user3102858
user3102858

Reputation: 128

exception on save request : parse cloud

I am facing exception "Invalid response from server" while in simple code. I installed package through nuget.

MainPage()
{
 InitializeComponent();
 ParseClient.Initialize("*****", "******");
 AddData();
}
 async void AddData()
 {
 ParseObject gameScore = new ParseObject("GameScore");
 gameScore["score"] = 1337;
 gameScore["playerName"] = "Sean Plott";
 await gameScore.SaveAsync(); /// Exception here
 }

Upvotes: 0

Views: 116

Answers (1)

Zaheer Mehmood
Zaheer Mehmood

Reputation: 269

I found the solution, this happens due to internet connection! Please check that is IE is opening in your simmulator; it its not then this is your solution(use some other internet connection).

Upvotes: 1

Related Questions