Does anyone know what is the API hit limit for the APP STORE SERVER API per day? - app-store

I am trying to fetch recent subscription information by using original transaction Id on a "app store server API" provided by an Apple. I want to know how many request can I hit per day. Anyone who has worked in this API requests previously, please help me.

Related

Send leads to particular campaign in Marketo?

I working on Marketo REST API for the first time. I want to upload multiple leads to a particular campaign. How can we do this? What is the flow of the process so that I can send my leads to a particular campaign on Marketo?
Please help me I'm stuck,I go through documentation but I didn't get any API .

Limit number of facebook request allowed?

My previous facebook developer account was blocked due I guess of making to many requests (No reason given by them and no answer after trying to contact them).
So before fall in the same issue with a new account. I would like to know if some has some relevant info or experience of how much request per second or hour can be made safetly to Facebook's API before been mark as abuse of service and been banned.
Thanks.
There is an article about rate limits in the official docs: https://developers.facebook.com/docs/graph-api/advanced/rate-limiting

Yahoo BOSS Geo api Issue

I am new for OAuth and for yahoo apis. My problem detail is as follows:
In my current project, we have to implement one service class in which, when we pass address,
it should use yahoo boss geo apis and return longitude and latitude of this address. We are using java in our project.
Till now I have done below mentioned following things:
I have added project detail at https://developer.apps.yahoo.com/projects and got Consumer Key, Consumer Secret etc.
But till now I didn't submit Billing info.
I am trying to run this simple java example given at: http://developer.yahoo.com/boss/geo/docs/codeexamples.html .
I using Consumer Key, Consumer Secret which I got after adding my project detail. But when ever I am trying to run this example,
I am getting status code = 503 which means service unavailable. 2-3 time I have got response in XML also.
Please let me know if I am doing any thing wrong here. Also how can I implement my requirement.
This is issue is most likely caused by a set rate limit. The error documentation can be found here:
http://developer.yahoo.com/boss/search/boss_api_guide/BOSSv2_APDX.html
In the Yahoo Boss group many people reported receiving 503 errors immediately after opening the account and putting in billing information. After 24 hours the problem went a way.

How to get item sold notification using Amazon Marketplace Web Service (MWS)

I want to get item sold notification for items listed on amazon marketplace programmatically. Is there a way to do this using MWS APIs? I looked through the documentation and didn't quite find anything close.
Hi I know that this is old and the user that asked the question is probably inactive.
Though just in case someone lands here I would to say that at the moment of writing this MWS does not support item sold notifications (the might do in the future) for now the only notification supported is "AnyOfferChanged".
more info
The way to get the orders will be by making a call to the ListOrders service, more info
here
Hope this helps anyone
You have to use MWS service from Amazon.
You will find all docs, api and information on this website : https://developer.amazonservices.com/.
You have to code the call to their webservice and treat response.
There is an "order" call than you can load, using a cron for example, to get any new orders. This is the order api call.
I hope this help.
Mike
Have a look at the description of FulfillmentOrderStatus notification type
https://docs.developer.amazonservices.com/en_UK/subscriptions/Subscriptions_NotificationType.html

Using GA Data Export API to Get All UA's

I am using the GA Data Export API to interact with Google Analytics and I'm making a lot of progress, I am using this URL Endpoint initially to pull all the profiles under an account:
https://www.google.com/analytics/feeds/accounts/default
This URL retrieves each GA ID (profile) and each UA. One thing I've realized is one account can contain multiple UAs and when this happens, this request pulls all profiles. We have a client who has about 115 profiles under like 10 different UAs, and the request takes about 30 seconds for the initial request (and then I believe it must be cached, because it speeds up considerably after this, but then the next day the same thing occurs).
Is there a way to get a list of UA's without pulling the profiles? This way I can query the UA specifically for the profiles instead of pulling each one.
Any advice on this would be really helpful!
Thanks
UPDATE: Here's some documentation on the specific call I am using right now:
http://code.google.com/apis/analytics/docs/gdata/gdataReferenceAccountFeed.html
UPDATE 1: I have found some interesting information in the docs
Once your application has verified
that the user has Analytics access,
its next step is to find out which
Analytics accounts the user has access
to. Remember, users can have access to
many different accounts, and within
them, many different profiles. For
this reason, your application cannot
access any report information without
first requesting the list of accounts
available to the user. The resulting
accounts feed returns that list, but
most importantly, the list also
contains the account profiles that the
user can view.
So this means that you have to use the default accounts call to get these back? Surely, somebody has had this issue before?
So apparently, you can query the account if you know the UA-ID, however there is no way to get back a list of only UA IDs.
One way you can do it is have the user enter their own UA ID instead of having them choose one; not as user-friendly as it could be but better than making the user wait 30 seconds!