Reputation: 128
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
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