Reputation: 4247
I want to use google url shortener api. I read that there is a limit of 1 or 10 per IP per second.
I want to hit it by C# console application. I would fetch long url from database and send them to google url shortening api. I will have to do 60000 times in a day.
How do i do this without getting any api limit exceeded error?
Upvotes: 0
Views: 552
Reputation: 117321
It would appear that the default for the URL shortener API is 100 requests a second If you really want to test hitting it why not just click the little pencil in the google developers console and set it to 1 per second. Either that or you are going to have to run your console application a lot faster to hit it.
Note: Linking the quota for the Google analytics MCF API isn't going to give you any information on the URL shortener api. You need to look at the documentation for the API you are accessing each API has a different quota.
Upvotes: 1