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 !
Es fehlt ein Film oder eine Serie? Logge dich ein zum Ergänzen.
Diesen Eintrag bewerten oder zu einer Liste hinzufügen?
Kein Mitglied?
Antwort von mymovieslibrary
am 9. Dezember 2013 um 15:55
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 ?
Antwort von Travis Bell
am 9. Dezember 2013 um 17:04
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.
Antwort von mymovieslibrary
am 10. Dezember 2013 um 01:21
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.
Antwort von Travis Bell
am 10. Dezember 2013 um 09:18
The rate limits are per IP, not API key. It's highly unlikely to cause you any trouble.
Cheers.
Antwort von mymovieslibrary
am 11. Dezember 2013 um 06:54
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 ?
Antwort von Travis Bell
am 11. Dezember 2013 um 10:02
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.
Antwort von mymovieslibrary
am 11. Dezember 2013 um 15:58
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 ?
Antwort von Travis Bell
am 11. Dezember 2013 um 17:04
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.
Antwort von mymovieslibrary
am 11. Dezember 2013 um 17:06
That's perfect ! Thank you very much !