You need to sign in to do that
Don't have an account?

"Login Rate Exceeded" Issues
We have a .Net service that uploads data to the SFDC data store via their APIs. Today I found that the user account that is leveraged for these uploads is locked out and has errors stating "Login Rate Exceeded".
After reviewing the newsgroups my understanding is that this error comes from exceeding the daily "API Requests". The problem is that when I login as a different user to check the "API Requests, Last 24 Hours" on the "Company Information" page, it states my current level is only 80%.
I was hoping for some insight as to what is the root cause of this governor problem.
Thanks,
Thomas
Login Rate Exceeded, is not related to the org wide limit of API calls, but to the number of times you specifically call the login method. Check your integration code to make sure you're only calling login once and not once for every api call.
Hi,
I am facing same 'Login Rate Exceeded issue'. Would really appreciate your help on fixing this. I am new to SalesForce and first time doing this integration. I call the 'getConnection' method each time before making API call. Inside that method I check if connection is not null then I return the same connection object or else I create a new one.
I am not sure why I get this error. The method code is like below. Please help, it's urgent.
Thanks,
mk2013