0

I am trying to connect my ASP.NET website to a table in Parse.com. I have downloaded .NET 4.5 SDK and added to references in VS 2012. But now I dont know how can I reference my application to the backend table.

I think I should write somewhere like webconfig, application key or something like this so ASP.NET website can connect parse.com backend.

I searched for a tutorial but I couldnt find. Thanks for any help.

6
  • This quick start guide appears to have what you're looking for: parse.com/apps/quickstart?onboard=#parse_data/desktop/windows/… Commented Jul 3, 2014 at 12:13
  • There is also a full example of connecting and working with data on github: github.com/ParsePlatform/TodoWindows Commented Jul 3, 2014 at 12:22
  • thanks. but these are win8 applications. My application is on ASP.NET which has no xaml file. Commented Jul 3, 2014 at 12:29
  • 1
    I believe the API will still be the same. Just look in the .cs files. I don't use Parse but that quick start guide and that sample project looked to show the basic principles. Commented Jul 3, 2014 at 12:32
  • you were right. .cs file enought to solve it. So what I did is just initialize the ParseClient Commented Jul 3, 2014 at 12:48

1 Answer 1

1

Ok, the solution was simple. I just had to implement the code below in a .cs file.

ParseClient.Initialize("APPLICATION ID", ".NET KEY");

ParseObject gameScore = new ParseObject("TABLE"); 
gameScore["COL"] = "TEMP";
Sign up to request clarification or add additional context in comments.

1 Comment

Are those keys meant to be secret?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.