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 !
Не можеш да нађеш филм или серију? Пријави се да додаш.
Желите ли да оцените или додате ову ставку у листу?
Нисте члан?
Одговор од mymovieslibrary
дана 09. децембар 2013. у 3:55 PM
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
дана 09. децембар 2013. у 5:04 PM
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
дана 10. децембар 2013. у 1:21 AM
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
дана 10. децембар 2013. у 9:18 AM
The rate limits are per IP, not API key. It's highly unlikely to cause you any trouble.
Cheers.
Одговор од mymovieslibrary
дана 11. децембар 2013. у 6:54 AM
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
дана 11. децембар 2013. у 10:02 AM
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
дана 11. децембар 2013. у 3:58 PM
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
дана 11. децембар 2013. у 5:04 PM
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
дана 11. децембар 2013. у 5:06 PM
That's perfect ! Thank you very much !