Tagged Questions
The mashery tag has no wiki summary.
19
votes
8answers
4k views
Is there a free API management system (e.g. a Mashery alternative)?
I'm looking into releasing a public REST API, which I'd like to keep protected via API keys. Services like Mashery offer API management services; per their spec sheet, they offer:
API registration, ...
2
votes
2answers
130 views
How does API signature authentication work as implemented by Mashery?
Mashery allows authentication via digital signature as follows:
First, concatenate the following components:
API key
Shared secret
UNIX Timestamp
Then, create an MD5 hash of the concatentated ...
0
votes
1answer
34 views
Mashery Quotas: Calls per “day” or calls per “24-hours”?
I am accessing an API hosted by Mashery with the following rate limit:
5 calls per second
10,000 calls per day
Does that imply that I can make 10,000 requests at 6:00PM, and then make another ...
0
votes
1answer
38 views
Rate-limiting RESTful consumer
I am consuming a rate-limited web service, which only allows me to make 5 calls per second. I am using my server to proxy these calls to a web client:
Mashery > My Web Server > Client's ...