I'm trying to create a new item, but I'm faced with the error "The account quota is limited for this operation." I've added a reference to "EverliveSDK.Windows\Telerik.Everlive.Sdk.dll" and I want to authenticate with the App's Master Key.
Here's a small piece of my code:
EverliveAppSettings eAppSettings = new EverliveAppSettings()
{
ApiKey = "MyApp_ApiKey",
UseHttps = true
};
eApp = new EverliveApp(eAppSettings);
eApp.WorkWith().Authentication().Login("MyApp_MasterKey");
eApp.WorkWith().Data<MyClass>().Create(myClass).ExecuteSync();
6 Answers, 1 is accepted
The reason you are getting this exception is that you are setting your requests to use HTTPs with UserHttps = True. At this stage, we are not allowing HTTPs requests to the Everlive services for the Developer edition which is free of charge.
You have to either start using HTTP or you have to purchase an Everlive edition that works with a secure channel.
We will make sure that the error message you get is much more descriptive, so that you can understand the reasons for it. Please let me know if you need anything else to help you get started with Telerik Everlive.
Hristo Borisov
Telerik
You've missed the Icenium Visual Studio Integration keynote? It has been recorded and posted here.
Looking for tips & tricks directly from the Icenium team? Check out our blog!
Share feedback and vote for features on our Feedback Portal.

Thanks for the quick answer. Now the next question is: Which editions support HTTPS (and how do I upgrade my Everlive Edition)?
Regards,
Mischa
The Everlive editions are listed here http://www.telerik.com/everlive/pricing where you have the option to purchase both monthly or annual subscriptions.
Let me know if you need further assistance, and I can get you in touch with one of our sales representatives.
Hristo Borisov
Telerik
You've missed the Icenium Visual Studio Integration keynote? It has been recorded and posted here.
Looking for tips & tricks directly from the Icenium team? Check out our blog!
Share feedback and vote for features on our Feedback Portal.

That page is what I was looking for since yesterday. I've been searching, but all I could find was this page: http://www.icenium.com/product/everlive/everlive-pricing.
I'll be testing EverLive over HTTP and when I'm ready for the next step I'll order the Startup edition, regenerate the Master Key and start using HTTPS.
Regards,
Mischa
We apologize for the obsolete link, it is delinked from all of our pages, however most likely it is still discoverable from google search - we would fix this shortly.
Regards,
Steve
Telerik
You've missed the Icenium Visual Studio Integration keynote? It has been recorded and posted here.
Looking for tips & tricks directly from the Icenium team? Check out our blog!
Share feedback and vote for features on our Feedback Portal.
