From 45e5014285749ff0881e32bd88cc20fd5f4360de Mon Sep 17 00:00:00 2001 From: jlquaccia Date: Fri, 28 Oct 2022 11:22:53 -0700 Subject: [PATCH 1/3] removed logic to append jw data to dctr param --- modules/pubmaticBidAdapter.js | 1 - test/spec/modules/pubmaticBidAdapter_spec.js | 178 ------------------- 2 files changed, 179 deletions(-) diff --git a/modules/pubmaticBidAdapter.js b/modules/pubmaticBidAdapter.js index 296a4314ac8..8a1bf6afdd9 100644 --- a/modules/pubmaticBidAdapter.js +++ b/modules/pubmaticBidAdapter.js @@ -1371,7 +1371,6 @@ export const spec = { */ transformBidParams: function (params, isOpenRtb, adUnit, bidRequests) { - _addJWPlayerSegmentData(params, adUnit.bids[0], true); return convertTypes({ 'publisherId': 'string', 'adSlot': 'string' diff --git a/test/spec/modules/pubmaticBidAdapter_spec.js b/test/spec/modules/pubmaticBidAdapter_spec.js index 6b240cb2d06..2f9664d4eac 100644 --- a/test/spec/modules/pubmaticBidAdapter_spec.js +++ b/test/spec/modules/pubmaticBidAdapter_spec.js @@ -3808,184 +3808,6 @@ describe('PubMatic adapter', function () { }); }); - describe('JW player segment data for S2S', function() { - let sandbox = sinon.sandbox.create(); - beforeEach(function () { - sandbox = sinon.sandbox.create(); - }); - afterEach(function() { - sandbox.restore(); - }); - it('Should append JW player segment data to dctr values in auction endpoint', function() { - var videoAdUnit = { - 'bidderCode': 'pubmatic', - 'bids': [ - { - 'bidder': 'pubmatic', - 'params': { - 'publisherId': '156276', - 'adSlot': 'pubmatic_video2', - 'dctr': 'key1=123|key2=345', - 'pmzoneid': '1243', - 'video': { - 'mimes': ['video/mp4', 'video/x-flv'], - 'skippable': true, - 'minduration': 5, - 'maxduration': 30, - 'startdelay': 5, - 'playbackmethod': [1, 3], - 'api': [1, 2], - 'protocols': [2, 3], - 'battr': [13, 14], - 'linearity': 1, - 'placement': 2, - 'minbitrate': 10, - 'maxbitrate': 10 - } - }, - 'rtd': { - 'jwplayer': { - 'targeting': { - 'segments': ['80011026', '80011035'], - 'content': { - 'id': 'jw_d9J2zcaA' - } - } - } - }, - 'bid_id': '17a6771be26cc4', - 'ortb2Imp': { - 'ext': { - 'data': { - 'pbadslot': 'abcd', - 'jwTargeting': { - 'playerID': 'myElement1', - 'mediaID': 'd9J2zcaA' - } - } - } - } - } - ], - 'auctionStart': 1630923178417, - 'timeout': 1000, - 'src': 's2s' - } - - spec.transformBidParams(bidRequests[0].params, true, videoAdUnit); - expect(bidRequests[0].params.dctr).to.equal('key1:val1,val2|key2:val1|jw-id=jw_d9J2zcaA|jw-80011026=1|jw-80011035=1'); - }); - it('Should send only JW player segment data in auction endpoint, if dctr is missing', function() { - var videoAdUnit = { - 'bidderCode': 'pubmatic', - 'bids': [ - { - 'bidder': 'pubmatic', - 'params': { - 'publisherId': '156276', - 'adSlot': 'pubmatic_video2', - 'dctr': 'key1=123|key2=345', - 'pmzoneid': '1243', - 'video': { - 'mimes': ['video/mp4', 'video/x-flv'], - 'skippable': true, - 'minduration': 5, - 'maxduration': 30, - 'startdelay': 5, - 'playbackmethod': [1, 3], - 'api': [1, 2], - 'protocols': [2, 3], - 'battr': [13, 14], - 'linearity': 1, - 'placement': 2, - 'minbitrate': 10, - 'maxbitrate': 10 - } - }, - 'rtd': { - 'jwplayer': { - 'targeting': { - 'segments': ['80011026', '80011035'], - 'content': { - 'id': 'jw_d9J2zcaA' - } - } - } - }, - 'bid_id': '17a6771be26cc4', - 'ortb2Imp': { - 'ext': { - 'data': { - 'pbadslot': 'abcd', - 'jwTargeting': { - 'playerID': 'myElement1', - 'mediaID': 'd9J2zcaA' - } - } - } - } - } - ], - 'auctionStart': 1630923178417, - 'timeout': 1000, - 'src': 's2s' - } - - delete bidRequests[0].params.dctr; - spec.transformBidParams(bidRequests[0].params, true, videoAdUnit); - expect(bidRequests[0].params.dctr).to.equal('jw-id=jw_d9J2zcaA|jw-80011026=1|jw-80011035=1'); - }); - - it('Should not send any JW player segment data in auction endpoint, if it is not available', function() { - var videoAdUnit = { - 'bidderCode': 'pubmatic', - 'bids': [ - { - 'bidder': 'pubmatic', - 'params': { - 'publisherId': '156276', - 'adSlot': 'pubmatic_video2', - 'dctr': 'key1=123|key2=345', - 'pmzoneid': '1243', - 'video': { - 'mimes': ['video/mp4', 'video/x-flv'], - 'skippable': true, - 'minduration': 5, - 'maxduration': 30, - 'startdelay': 5, - 'playbackmethod': [1, 3], - 'api': [1, 2], - 'protocols': [2, 3], - 'battr': [13, 14], - 'linearity': 1, - 'placement': 2, - 'minbitrate': 10, - 'maxbitrate': 10 - } - }, - 'bid_id': '17a6771be26cc4', - 'ortb2Imp': { - 'ext': { - 'data': { - 'pbadslot': 'abcd', - 'jwTargeting': { - 'playerID': 'myElement1', - 'mediaID': 'd9J2zcaA' - } - } - } - } - } - ], - 'auctionStart': 1630923178417, - 'timeout': 1000, - 'src': 's2s' - } - spec.transformBidParams(bidRequests[0].params, true, videoAdUnit); - expect(bidRequests[0].params.dctr).to.equal('key1:val1,val2|key2:val1'); - }); - }) - describe('Checking for Video.Placement property', function() { let sandbox, utilsMock; const adUnit = 'Div1'; From 10af9e73593a8b436813562c80d6939b0426eeba Mon Sep 17 00:00:00 2001 From: jlquaccia Date: Tue, 27 Dec 2022 15:43:56 -0800 Subject: [PATCH 2/3] removed unneeded code --- .../gpt/jwplayerRtdProvider_example-2.html | 9738 +++++++++++++++++ modules/pubmaticBidAdapter.js | 10 +- 2 files changed, 9741 insertions(+), 7 deletions(-) create mode 100644 integrationExamples/gpt/jwplayerRtdProvider_example-2.html diff --git a/integrationExamples/gpt/jwplayerRtdProvider_example-2.html b/integrationExamples/gpt/jwplayerRtdProvider_example-2.html new file mode 100644 index 00000000000..574584b2534 --- /dev/null +++ b/integrationExamples/gpt/jwplayerRtdProvider_example-2.html @@ -0,0 +1,9738 @@ + + + + + + + + + + + + + + You searched for walrus - AZ Animals + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+
+
+

Search Results for 'walrus'

+ +
+ +
+ +
+
+
+

Walrus

+
+
+ Walrus Picture +
+
+

+ Walrus Classification and Evolution The Walrus is a large + marine animal that is found inhabiting the freezing cold and + icy waters of the Arctic Circle. Thought to be most + closely… + Read More +

+

+ By + AZ Animals Staff + 3 years ago +

+
+
+
+
+ +
+
+ +
+ 10 Incredible Walrus Facts Picture +
+
+

+ Walruses are very distinct-looking animals that reside + mostly in the cold and icy waters of the Arctic Circle. Not + the most popular animals in the world, very little is + publicly… + Read More +

+

+ By + Emmanuel Kingsley + 6 months ago +

+
+
+
+
+
+
+
+ +
+ Manatee Vs Walrus: What Are the Differences? Picture +
+
+

+ Walruses and manatees are two large, gray, water-dwelling + creatures. At first glance, they have a lot in common. Yet, + if you take some time to study these creatures, you’ll + find… + Read More +

+

+ By + Kyle Glatz + 10 months ago +

+
+
+
+
+ +
+
+ +
+ What Do Walruses Eat? 14 Foods in Their Diet Picture +
+
+

+ Of the semi-aquatic types of mammals inhabiting the coasts + of different countries and regions (seals, walruses, and sea + lions), walruses might look like they are the most dangerous + because of… + Read More +

+

+ By + Taiwo Victor + 12 months ago +

+
+
+
+
+
+ + + + +
+
+ +
+ Sarus Crane Picture +
+
+

+ “Sarus cranes symbolize marital fidelity in India and are + known for being loyal to their partners during their + lifespan.” Summary The sarus crane (Antigone antigone) is + the tallest flying bird… + Read More +

+

+ By + Niccoy Walker + 2 months ago +

+
+
+
+
+ + + +
+
+ +
+ How Deep is the Arctic Ocean? Picture +
+
+

+ The Arctic Ocean is the world's smallest ocean. It is also + the shallowest out of the five major oceans of the world. It + covers an area of about 5,430,000 sq… + Read More +

+

+ By + Shaunice Lewis + 3 months ago +

+
+
+
+
+
+ +
+
+ +
+ What Do Seals Eat? Picture +
+
+

+ Key Points Seals mainly eat fish, but they also consume + shrimp, krill, and octopus.Hunting prey is done differently + according to the type of seal. Many seals dive deeply in + search… + Read More +

+

+ By + Heather Ross + 1 year ago +

+
+
+
+
+
+
+ +
+ 10 Incredible Polar Bear Facts Picture +
+
+

+ Polar bears are one of the most incredible animals on Earth. + They are massive marine animals and have a number of + adaptations that allow them to survive in their + harsh… + Read More +

+

+ By + Jennifer Haase + 6 months ago +

+
+
+
+
+
+ + + + +
+
+ +
+ Are Seals Mammals? Picture +
+
+

+ Key Points Seals are mammals and posses all of the features + that make an animal a mammal.Seals don’t have fur all over + their bodies, but they have so many sensitive… + Read More +

+

+ By + Rebecca + 1 year ago +

+
+
+
+
+
+
+ +
+ Living In The Freezer Picture +
+
+

+ Key Points The polar regions of the earth are the most harsh + environments to live in.The temperature fluctuates between + zero degrees in the summer to minus forty degrees in + the… + Read More +

+

+ By + Lex Basu + 11 years ago +

+
+
+
+
+
+
+
+ +
+ How Long are Elephants Pregnant? Picture +
+
+

+ You’ve probably heard the term “Breeding like rabbits!” + Well, that does not apply to elephants, at all. So, how long + are elephants pregnant? Elephants have the longest + pregnancies of all… + Read More +

+

+ By + Cindy Rasmussen + 1 year ago +

+
+
+
+
+
+
+ +
+ Animals in North Atlantic Picture +
+
+

+ Below you can find a complete list of North Atlantic Ocean + animals. We currently track [animals-by-location-count + location='nat'] animals in North Atlantic and are adding + more every day! The North Atlantic… + Read More +

+

+ By + AZ Animals Staff + 2 years ago +

+
+
+
+
+
+
+ +
+ Animals in Greenland Picture +
+
+

+ Below you can find a complete list of Greenlandic animals. + We currently track [animals-by-location-count location='gl'] + animals in Greenland and are adding more every day! + Greenland enjoys a unique landscape. For… + Read More +

+

+ By + AZ Animals Staff + 2 years ago +

+
+
+
+
+
+
+
+ +
+ Animals in Svalbard and Jan Mayen Picture +
+
+

+ Below you can find a complete list of Jan Mayen animals. We + currently track [animals-by-location-count location='sj'] + animals in Svalbard and Jan Mayen and are adding more every + day! Svalbard and… + Read More +

+

+ By + AZ Animals Staff + 2 years ago +

+
+
+
+
+ +
+
+ +
+ The 6 Best Aquariums in Canada Picture +
+
+

+ Canada is the land of maple syrup, its flag paying homage to + it with a large maple leaf. More to the point, Canada is + full of surprises. While many would… + Read More +

+

+ By + Jude Speegle + 9 months ago +

+
+
+
+
+
+
+
+ +
+

+ Key Points Elephant seals mainly eat squid and fish, but + they will eat a variety of other foods as well. Their exact + diet depends on where they live since elephant… + Read More +

+

+ By + Emily Wolfel + 3 months ago +

+
+
+
+
+
+
+
+

Seal

+
+
+ Seal Picture +
+
+

+ Lithe, limber, and agile, the seal is a master of aquatic + locomotion. The seal’s paddle-shaped flippers and unique + physiology enable it to thrive in even the most perilous + aquatic conditions.… + Read More +

+

+ By + AZ Animals Staff + 3 years ago +

+
+
+
+
+ +
+
+ +
+ What Do Bears Eat? Picture +
+
+

+ Have you ever read Winnie the Pooh? Chances are you have, + which means you know that there’s nothing Pooh loves more + than honey. He eats the stuff by the bucket… + Read More +

+

+ By + Patrick Sather + 12 months ago +

+
+
+
+
+
+
+ +
+ Animals that Start with W Picture +
+
+

+ Read below for information on [animals-by-letter-count + letter="W"] different animals that start with the letter W, + from the wallaby to the wrasse fish. The most popular animal + that starts with the… + Read More +

+

+ By + AZ Animals Staff + 2 years ago +

+
+
+
+
+ +
+
+ +
+ 6 Extinct Species in India Picture +
+
+

+ India encompasses the entire Indian subcontinent in South + Asia. It’s one of the most biodiverse countries on Earth, + despite having the second largest population of humans of + any country. India’s… + Read More +

+

+ By + Brandi Allred + 4 months ago +

+
+
+
+
+
+
+ +
+ Sea Lion Teeth: Everything You Need to Know Picture +
+
+

+ Don’t get fooled by their incredible ability to swim and + hunt underwater, sea lions are big marine mammals usually + found along the the South Atlantic and Pacific coasts. Some + species… + Read More +

+

+ By + Taiwo Victor + 12 months ago +

+
+
+
+
+ + +
+
+ +
+ Polar Regions Picture +
+
+

+ The polar regions are the coldest places on Earth and differ + the most from every other habitat on the planet. During the + summer months, the days receive 24 hours of… + Read More +

+

+ By + AZ Animals Staff + 3 years ago +

+
+
+
+
+
+
+ +
+ 10 Incredible Seal Facts Picture +
+
+

+ Seals are a type of marine mammal found in different parts + of the world. They can live in both polar and tropical + waters. Seals are found in various places and… + Read More +

+

+ By + Emmanuel Kingsley + 6 months ago +

+
+
+
+
+
+ +
+
+ +
+ Do Polar Bears Live in Alaska? Picture +
+
+

+ The polar bear is a hypercarnivorous bear species with a + natural range that includes the Arctic Ocean, its + neighboring waters, and surrounding land masses. It is the + world's largest bear… + Read More +

+

+ By + Taiwo Victor + 7 months ago +

+
+
+
+
+
+
+
+

Ocean

+
+
+ Ocean Picture +
+
+

+ The world’s oceans are divided into five sections – the + Pacific Ocean, Atlantic Ocean, Indian Ocean, Antarctic + Ocean, and the Arctic Ocean. Before the year 2000, only four + oceans were… + Read More +

+

+ By + AZ Animals Staff + 2 years ago +

+
+
+
+
+
+
+
+ +
+ What do Polar Bears Eat? Picture +
+
+

+ Polar bears are the largest bears globally and are the + number one predator in the Arctic. Additionally, polar bears + are the biggest land carnivores on the planet and are + roughly… + Read More +

+

+ By + Janet F. Murray + 6 months ago +

+
+
+
+
+ +
+
+ +
+ Animals in Atlantic Picture +
+
+

+ Below you can find a complete list of Atlantic Ocean + animals. We currently track [animals-by-location-count + location='nat'] animals in the Atlantic and are adding more + every day! The Atlantic Ocean is… + Read More +

+

+ By + Retha Lombard + 2 years ago +

+
+
+
+
+
+
+
+ +
+ What Do Narwhals Eat? Picture +
+
+

+ Narwhals are easily one of the most unique and beloved + animals in the world. Research of narwhals in the wild has + uncovered a lot about this beloved animal. This + includes… + Read More +

+

+ By + Peralee Knight + 12 months ago +

+
+
+
+
+ + +
+ +
+
+ +
+ + + + + + + + + + + + + + + + + + + + diff --git a/modules/pubmaticBidAdapter.js b/modules/pubmaticBidAdapter.js index 8a1bf6afdd9..4df27ffb475 100644 --- a/modules/pubmaticBidAdapter.js +++ b/modules/pubmaticBidAdapter.js @@ -607,7 +607,7 @@ function _addDealCustomTargetings(imp, bid) { } } -function _addJWPlayerSegmentData(imp, bid, isS2S) { +function _addJWPlayerSegmentData(imp, bid) { var jwSegData = (bid.rtd && bid.rtd.jwplayer && bid.rtd.jwplayer.targeting) || undefined; var jwPlayerData = ''; const jwMark = 'jw-'; @@ -624,12 +624,8 @@ function _addJWPlayerSegmentData(imp, bid, isS2S) { var ext; - if (isS2S) { - (imp.dctr === undefined || imp.dctr.length == 0) ? imp.dctr = jwPlayerData : imp.dctr += '|' + jwPlayerData; - } else { - ext = imp.ext; - ext && ext.key_val === undefined ? ext.key_val = jwPlayerData : ext.key_val += '|' + jwPlayerData; - } + ext = imp.ext; + ext && ext.key_val === undefined ? ext.key_val = jwPlayerData : ext.key_val += '|' + jwPlayerData; } function _createImpressionObject(bid, conf) { From abfecc1d0818d0bbebd7ca3412268345ae59354d Mon Sep 17 00:00:00 2001 From: jlquaccia Date: Tue, 27 Dec 2022 15:45:36 -0800 Subject: [PATCH 3/3] removed extra html page for testing --- .../gpt/jwplayerRtdProvider_example-2.html | 9738 ----------------- 1 file changed, 9738 deletions(-) delete mode 100644 integrationExamples/gpt/jwplayerRtdProvider_example-2.html diff --git a/integrationExamples/gpt/jwplayerRtdProvider_example-2.html b/integrationExamples/gpt/jwplayerRtdProvider_example-2.html deleted file mode 100644 index 574584b2534..00000000000 --- a/integrationExamples/gpt/jwplayerRtdProvider_example-2.html +++ /dev/null @@ -1,9738 +0,0 @@ - - - - - - - - - - - - - - You searched for walrus - AZ Animals - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
-
-

Search Results for 'walrus'

- -
- -
- -
-
-
-

Walrus

-
-
- Walrus Picture -
-
-

- Walrus Classification and Evolution The Walrus is a large - marine animal that is found inhabiting the freezing cold and - icy waters of the Arctic Circle. Thought to be most - closely… - Read More -

-

- By - AZ Animals Staff - 3 years ago -

-
-
-
-
- -
-
- -
- 10 Incredible Walrus Facts Picture -
-
-

- Walruses are very distinct-looking animals that reside - mostly in the cold and icy waters of the Arctic Circle. Not - the most popular animals in the world, very little is - publicly… - Read More -

-

- By - Emmanuel Kingsley - 6 months ago -

-
-
-
-
-
-
-
- -
- Manatee Vs Walrus: What Are the Differences? Picture -
-
-

- Walruses and manatees are two large, gray, water-dwelling - creatures. At first glance, they have a lot in common. Yet, - if you take some time to study these creatures, you’ll - find… - Read More -

-

- By - Kyle Glatz - 10 months ago -

-
-
-
-
- -
-
- -
- What Do Walruses Eat? 14 Foods in Their Diet Picture -
-
-

- Of the semi-aquatic types of mammals inhabiting the coasts - of different countries and regions (seals, walruses, and sea - lions), walruses might look like they are the most dangerous - because of… - Read More -

-

- By - Taiwo Victor - 12 months ago -

-
-
-
-
-
- - - - -
-
- -
- Sarus Crane Picture -
-
-

- “Sarus cranes symbolize marital fidelity in India and are - known for being loyal to their partners during their - lifespan.” Summary The sarus crane (Antigone antigone) is - the tallest flying bird… - Read More -

-

- By - Niccoy Walker - 2 months ago -

-
-
-
-
- - - -
-
- -
- How Deep is the Arctic Ocean? Picture -
-
-

- The Arctic Ocean is the world's smallest ocean. It is also - the shallowest out of the five major oceans of the world. It - covers an area of about 5,430,000 sq… - Read More -

-

- By - Shaunice Lewis - 3 months ago -

-
-
-
-
-
- -
-
- -
- What Do Seals Eat? Picture -
-
-

- Key Points Seals mainly eat fish, but they also consume - shrimp, krill, and octopus.Hunting prey is done differently - according to the type of seal. Many seals dive deeply in - search… - Read More -

-

- By - Heather Ross - 1 year ago -

-
-
-
-
-
-
- -
- 10 Incredible Polar Bear Facts Picture -
-
-

- Polar bears are one of the most incredible animals on Earth. - They are massive marine animals and have a number of - adaptations that allow them to survive in their - harsh… - Read More -

-

- By - Jennifer Haase - 6 months ago -

-
-
-
-
-
- - - - -
-
- -
- Are Seals Mammals? Picture -
-
-

- Key Points Seals are mammals and posses all of the features - that make an animal a mammal.Seals don’t have fur all over - their bodies, but they have so many sensitive… - Read More -

-

- By - Rebecca - 1 year ago -

-
-
-
-
-
-
- -
- Living In The Freezer Picture -
-
-

- Key Points The polar regions of the earth are the most harsh - environments to live in.The temperature fluctuates between - zero degrees in the summer to minus forty degrees in - the… - Read More -

-

- By - Lex Basu - 11 years ago -

-
-
-
-
-
-
-
- -
- How Long are Elephants Pregnant? Picture -
-
-

- You’ve probably heard the term “Breeding like rabbits!” - Well, that does not apply to elephants, at all. So, how long - are elephants pregnant? Elephants have the longest - pregnancies of all… - Read More -

-

- By - Cindy Rasmussen - 1 year ago -

-
-
-
-
-
-
- -
- Animals in North Atlantic Picture -
-
-

- Below you can find a complete list of North Atlantic Ocean - animals. We currently track [animals-by-location-count - location='nat'] animals in North Atlantic and are adding - more every day! The North Atlantic… - Read More -

-

- By - AZ Animals Staff - 2 years ago -

-
-
-
-
-
-
- -
- Animals in Greenland Picture -
-
-

- Below you can find a complete list of Greenlandic animals. - We currently track [animals-by-location-count location='gl'] - animals in Greenland and are adding more every day! - Greenland enjoys a unique landscape. For… - Read More -

-

- By - AZ Animals Staff - 2 years ago -

-
-
-
-
-
-
-
- -
- Animals in Svalbard and Jan Mayen Picture -
-
-

- Below you can find a complete list of Jan Mayen animals. We - currently track [animals-by-location-count location='sj'] - animals in Svalbard and Jan Mayen and are adding more every - day! Svalbard and… - Read More -

-

- By - AZ Animals Staff - 2 years ago -

-
-
-
-
- -
-
- -
- The 6 Best Aquariums in Canada Picture -
-
-

- Canada is the land of maple syrup, its flag paying homage to - it with a large maple leaf. More to the point, Canada is - full of surprises. While many would… - Read More -

-

- By - Jude Speegle - 9 months ago -

-
-
-
-
-
-
-
- -
-

- Key Points Elephant seals mainly eat squid and fish, but - they will eat a variety of other foods as well. Their exact - diet depends on where they live since elephant… - Read More -

-

- By - Emily Wolfel - 3 months ago -

-
-
-
-
-
-
-
-

Seal

-
-
- Seal Picture -
-
-

- Lithe, limber, and agile, the seal is a master of aquatic - locomotion. The seal’s paddle-shaped flippers and unique - physiology enable it to thrive in even the most perilous - aquatic conditions.… - Read More -

-

- By - AZ Animals Staff - 3 years ago -

-
-
-
-
- -
-
- -
- What Do Bears Eat? Picture -
-
-

- Have you ever read Winnie the Pooh? Chances are you have, - which means you know that there’s nothing Pooh loves more - than honey. He eats the stuff by the bucket… - Read More -

-

- By - Patrick Sather - 12 months ago -

-
-
-
-
-
-
- -
- Animals that Start with W Picture -
-
-

- Read below for information on [animals-by-letter-count - letter="W"] different animals that start with the letter W, - from the wallaby to the wrasse fish. The most popular animal - that starts with the… - Read More -

-

- By - AZ Animals Staff - 2 years ago -

-
-
-
-
- -
-
- -
- 6 Extinct Species in India Picture -
-
-

- India encompasses the entire Indian subcontinent in South - Asia. It’s one of the most biodiverse countries on Earth, - despite having the second largest population of humans of - any country. India’s… - Read More -

-

- By - Brandi Allred - 4 months ago -

-
-
-
-
-
-
- -
- Sea Lion Teeth: Everything You Need to Know Picture -
-
-

- Don’t get fooled by their incredible ability to swim and - hunt underwater, sea lions are big marine mammals usually - found along the the South Atlantic and Pacific coasts. Some - species… - Read More -

-

- By - Taiwo Victor - 12 months ago -

-
-
-
-
- - -
-
- -
- Polar Regions Picture -
-
-

- The polar regions are the coldest places on Earth and differ - the most from every other habitat on the planet. During the - summer months, the days receive 24 hours of… - Read More -

-

- By - AZ Animals Staff - 3 years ago -

-
-
-
-
-
-
- -
- 10 Incredible Seal Facts Picture -
-
-

- Seals are a type of marine mammal found in different parts - of the world. They can live in both polar and tropical - waters. Seals are found in various places and… - Read More -

-

- By - Emmanuel Kingsley - 6 months ago -

-
-
-
-
-
- -
-
- -
- Do Polar Bears Live in Alaska? Picture -
-
-

- The polar bear is a hypercarnivorous bear species with a - natural range that includes the Arctic Ocean, its - neighboring waters, and surrounding land masses. It is the - world's largest bear… - Read More -

-

- By - Taiwo Victor - 7 months ago -

-
-
-
-
-
-
-
-

Ocean

-
-
- Ocean Picture -
-
-

- The world’s oceans are divided into five sections – the - Pacific Ocean, Atlantic Ocean, Indian Ocean, Antarctic - Ocean, and the Arctic Ocean. Before the year 2000, only four - oceans were… - Read More -

-

- By - AZ Animals Staff - 2 years ago -

-
-
-
-
-
-
-
- -
- What do Polar Bears Eat? Picture -
-
-

- Polar bears are the largest bears globally and are the - number one predator in the Arctic. Additionally, polar bears - are the biggest land carnivores on the planet and are - roughly… - Read More -

-

- By - Janet F. Murray - 6 months ago -

-
-
-
-
- -
-
- -
- Animals in Atlantic Picture -
-
-

- Below you can find a complete list of Atlantic Ocean - animals. We currently track [animals-by-location-count - location='nat'] animals in the Atlantic and are adding more - every day! The Atlantic Ocean is… - Read More -

-

- By - Retha Lombard - 2 years ago -

-
-
-
-
-
-
-
- -
- What Do Narwhals Eat? Picture -
-
-

- Narwhals are easily one of the most unique and beloved - animals in the world. Research of narwhals in the wild has - uncovered a lot about this beloved animal. This - includes… - Read More -

-

- By - Peralee Knight - 12 months ago -

-
-
-
-
- - -
- -
-
- -
- - - - - - - - - - - - - - - - - - - -