Part 2: A simple script to pull information
-
@victorhupo If its just for this one title click on 'show all images' , then right click on whatever image you want and save it
-
@admin but in the site only it shows images in EnglishI would like the images in Brazilian Portuguese.
-
@victorhupo In that case you would need to use this tutorial and just change your language to whatever you want...
'Accept-Language':'en-GB,en;q=0.5',
needs to change to:
'Accept-Language':'pt',
or something equivalent.. have a look at your request headers like mentioned in the example above
-
Am interested in understanding the geographical differences in Netflix offerings and particularly attempting to determine the hierarchies used to implement various aspects of subscriber based on location. Accordingly beginning to understand what the API can offer seems useful.
After using pip to install requests (which I also attempted for json as it's there in the script import statements), I created & did the updates to the script itself.
I copied the python script into a (.py) file, updated the cookie sections (containing components for memclid, nfvdid, SecureNetflixId, NetflixId, cL, clSharedContext, didUserInteractWithPage, dsca...).
Initially it seemed to give some sort of json error, but after updating the User-Agent details now gives me the following.
13:46:Drei $python netflix1.py
Traceback (most recent call last):
File "netflix1.py", line 29, in <module>
videos=rjson['value']['videos']
KeyError: 'value'
13:46:Drei $head -29 netflix1.py | tail -1
videos=rjson['value']['videos']Ideas?
I also updated the User Agent value and pathevaluator value (URL) from a POST request. -
As the python response error is apparently with whatever the rjson is, how might I determine if it is being populated? Via inspect element in the browser I can see that videos contains the following attributes..summary, title, titleMaturity, userRating, boxarts, UserRatingRequestId.
I know that the browser response is separate from that of the python script response.
How to troubleshoot?
-
Manually stepping through the steps of the script and using print to reveal variable values and responses shows me much.
response=requests.post(url,data=data,headers=headers)
print response
<Response [200]>So I'm getting an "OK" response.
rjson=response.json()
print rjson
{u'paths': [[u'newarrivals', {u'to': 1, u'from': 0}, {u'to': 5, u'from': 0}, [u'title', u'availability']], [u'newarrivals', {u'to': 1, u'from': 0}, {u'to': 5, u'from': 0}, u'boxarts', u'_342x192', u'jpg']], u'jsonGraph': {u'newarrivals': {u'1': {u'$type': u'ref', u'value': [u'lists',...
...
.., {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}, u'5': {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}, u'4': {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}}}}}And here's where it falls down.
videos=rjson['value']['videos']
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
KeyError: 'value' -
Hi! I have a new website www.wenetflix.com build with laravel than i want to integrate it unogs.com api
Can i do it this please and how ?
regards
-
How do you search all films available on Netflix?
-
globally? you can't as far as I'm aware... but with unogs.com you can see whats available in 31 countries.
-
Hello guys,
The "&languages=" on Netflix API is no longer working! It only returns the language from your the account.
Do you know how to change the language from the movie name/title?