Questions tagged [netflix]

The netflix tag refers to questions related to Netflix API and its use. Netflix supports a JavaScript API and a REST API which allow you to integrate Netflix user services into an application.

Netflix supports a JavaScript API and a REST API which allow you to integrate Netflix user services into an application.

The official support has ended.

See Netflix changes its public API program by ending it, will no longer issue new dev keys

424 questions
0
votes
1 answer

OAuth Authorized Access Token question for Java

I am developing an OAuth library to be used by BlackBerry mobile devices to connect to Netflix. I have successfully negotiated the request token and the access token. I have received the authorized token, the token secret, and the encrypted…
littleK
  • 17,803
  • 26
  • 116
  • 179
0
votes
1 answer

Netflix API play callback

Does Netflix API have a function for callback now playing video? In other words, is there any way to get information - title, ratings, etc.- of the clip that I am currently watching as real time basis? I has been looking for it, but I cannot find…
user2499003
  • 141
  • 1
  • 3
  • 11
0
votes
0 answers

AppDynamics doesn't monitor calls from Hystrix app

I develop common java web app. I use Hystrix in my app, actually I have a REST client whose methods wrapped in hystrix commands. My web app uses this rest client to communicate with remote server. My web app is configured as described in hystrix…
user1932034
  • 149
  • 2
  • 3
  • 11
0
votes
1 answer

Getting Netflix catalogs' of other countries

Using my Netflix dev key with node.js and nodeflix, I've been able to retrieve the catalogs for the US (/catalog/titles/streaming) and Canada (/catalog/titles/streaming/en_CA.xml). However, I've been unable to find any information on how to get the…
0
votes
1 answer

How to tell the difference between SD and HD movies on netflix api without quality property

Previously in the Netflix API when you requested format_availability for a movie in the catalog, if it was available to stream there would be an instant section. Under that, there would be a property "quality": "HD" for HD movies available in 720p.…
William
  • 6,186
  • 4
  • 29
  • 34
0
votes
1 answer

Getting empty response on Netflix /catalog/titles/streaming

I'm using node.js and nodefilx to try this out. It's a very simple query: var nodeflix = require('nodeflix'); var n = new nodeflix({ consumer_key: 'MY_KEY', consumer_secret: 'MY_SECRET', oauth_token: '', //…
0
votes
1 answer

Issues with Netflix ICE

There is a prerequisite to acquire the proper license of highstock before using the Netflix ICE. I do not want to invest any money into it, just want to explore the features of ICE. Do I have to buy a proper licence of highstock before using…
Prats
  • 1,455
  • 3
  • 16
  • 27
0
votes
1 answer

Netflix ICE and librarian-chef - The package archive has too many children

I'm trying to deploy opscode "Netflix ICE" cookbook. ENV rvm ruby 2.0.0 librarian-chef 0.0.1 Getting the following error during running librarian-chef install: *[Librarian] Unpacking…
Seva Feldman
  • 103
  • 1
  • 4
0
votes
2 answers

Netflix Karyon not using Governator to create resources classes

I'm playing with Karyon and I've hitting a problem where Jersey and not Governator is trying to instantiate my rest resource classes. I'm trying to do a more robust than the hello world example where I can specify my own Guice modules for…
Patrick Auld
  • 1,297
  • 3
  • 14
  • 24
0
votes
1 answer

How to determine test error for Simon Funk's incremental SVD method

I'm trying to implement this for a ratings dataset that's similar to Netflix, and I've gotten it to "work"; the training error is driven toward 0 after each iteration / more features are added. How do I determine how well this will predict a test…
Jon
  • 305
  • 1
  • 4
  • 10
0
votes
1 answer

How do I save a gzipped copy of the Netflix instant catalog?

I used a tutorial on Netflix's site to correctly download a gzip of an API query for a specific movie. When I changed the code to download a gzip of the entire Netflix catalog, the script doesn't work anymore. When I run the script, the API query…
steve larsen
  • 31
  • 1
  • 3
0
votes
4 answers

is there a way to dowload netflix catalog?

http://api-public.netflix.com/catalog/titles/streaming doesnt work anymore (it says inactive account). Is there a way to download full catalog? wanted to create app for my use.
0
votes
1 answer

Very Weird PHP Echo Error

I am trying to echo out a URL that is generated via the Netflix API. The URL is held in the variable $movieid and when 'echo $movieid;' is typed it works. I need to get the value out of the PHP and into the JavaScript that Netflix provides and…
Ash
  • 1
  • 2
0
votes
1 answer

HTTP GET for Netflix

I tried to make a GET request for the netflix home page with command prompt because the response returned to me was a 302/301 all the time. So I connected to netflix via the following: telnet signup.netflix.com 80 Then the request I made was GET /…
Nubcake
  • 337
  • 2
  • 6
  • 18
0
votes
1 answer

NetFlix API : "expand" not working with pyflix2

Netflix API says that this URL: http://api-public.netflix.com/catalog/titles/movies/60036637?expand=synopsis%20cast%20directors%20awards%20similars should work while getting title details. And this should expand all the links sent as the parameter…
Paritosh
  • 51
  • 3