Hi, I'd like to know if there is a method to query multiple ids in one request ? My application knows what ids to query, and they often are numerous. My problem is that I get stopped but the limitations in requests.
Thanks in advance !
Can't find a movie or TV show? Login to create it.
Elementu hau kalifikatu edo zerrenda batera gehitzea nahi al duzu?
Ez zara kidea?
mymovieslibrary Erabiltzailearen Erantzuna
Abendua 9, 2013 egunean 3:55 PM(e)tan
As a side question, could you tell me what is the difference between a private and a commercial api_key ? Are commercial licences more "friendly" with numerous requests ? Are they free ?
Travis Bell Erabiltzailearen Erantzuna
Abendua 9, 2013 egunean 5:04 PM(e)tan
Hi ,
No, there is no such way at this time and we don't have any plans for it. Just be sure to track the number of requests you make per second and don't go over 😉
There is no difference from a request perspective. We track these independently purely for analytic reasons.
mymovieslibrary Erabiltzailearen Erantzuna
Abendua 10, 2013 egunean 1:21 AM(e)tan
Thanks you for your quick answer Travis.
Is there any chance that we can discuss for a partnership ? The application I am building won't be able to run correctly without larger requests permissions. When the user installs it, he is encouraged to provide a folder which contains all of his movies files. The application will search the informations through your API (which means two requests by file, one with the title, then one with the id for more precise informations). Assuming that there can be 500 files in this folder, it will take at least something like 5 minutes for a single user. But this is not what I'm afraid of (5 minutes is not so long). My main fear is that more than 20 users pick there folder at the same time : the limitation of 20 ips will broke all requests. I can't control how many users are installing the application, and this will result in a bad feeling in the application.
Here is different solutions that would resolve my problem :
I ensure that your site will be promoted in the application, as a big part of its success.
I would understand your reticence, assuming you that the service you propose is free. But I really think that a partnership would be positiv for both of us. Thanks anyway for your great job with this API.
Travis Bell Erabiltzailearen Erantzuna
Abendua 10, 2013 egunean 9:18 AM(e)tan
The rate limits are per IP, not API key. It's highly unlikely to cause you any trouble.
Cheers.
mymovieslibrary Erabiltzailearen Erantzuna
Abendua 11, 2013 egunean 6:54 AM(e)tan
The documentation indicates a maximum of 20 connections (IPs) at a time by API key. What will happen if 30 users use the application at the same time ?
Travis Bell Erabiltzailearen Erantzuna
Abendua 11, 2013 egunean 10:02 AM(e)tan
Hi mymovieslibrary,
Not by API key, that's what I already mentioned. The limits are strictly imposed by IP address, that is all. Should one of your individual users go over either 30 requests in 10 seconds or 20 simultaneous connections, they'll be faced with a 503 error. But that has no bearing on any of your other users.
Cheers.
mymovieslibrary Erabiltzailearen Erantzuna
Abendua 11, 2013 egunean 3:58 PM(e)tan
Hi Travis, indeed I did not understand the things like that. Thank you for your precisions. But I still have one question : what do you mean so by "connections" ? Do you mean that even if the user can make 30 requests in a 10s period, he is not allowed to have 20 concurrent queries at a time ?
Travis Bell Erabiltzailearen Erantzuna
Abendua 11, 2013 egunean 5:04 PM(e)tan
It's all about concurrency. If you programmed your app to connect 20 different connections all at once should a 21st attempt to connect it would error. This is all per IP though, so it has to do with individual users, not your application as a whole or API key.
Since most programs only access a single HTTP connection at a time, this is one of those things that I almost guarantee you, you will never see.
mymovieslibrary Erabiltzailearen Erantzuna
Abendua 11, 2013 egunean 5:06 PM(e)tan
That's perfect ! Thank you very much !