2

I am using below url to get Dailymotion trending videos, If i open the url in browser, it gives the correct data, but while scrapping the api using php, it gives me different results..

https://api.dailymotion.com/videos?fields=title&flags=no_live,no_premium&private=0&sort=trending&limit=20&country=in

Mahendra Gunawardena
  • 1,956
  • 5
  • 26
  • 45
MK MK
  • 23
  • 5

1 Answers1

0

With provided URL, it seems that DailyMotion API ignore the country parameter.

Fast reading API DOC, I understand that country parameter is used to set locale or as returned value.

To obtain language-filtered results, you can use language:

https://api.dailymotion.com/videos?fields=title&flags=no_live,no_premium&private=0&sort=trending&limit=20&language=in

This works for me.

fusion3k
  • 11,568
  • 4
  • 25
  • 47