Mugu
Mugu

Reputation: 133

Google plus API for WP7 using C#, .NET

Does google plus provide an API for WP7 to access its services via C# , .NET Please let me know.

Upvotes: 2

Views: 1865

Answers (3)

azarc3
azarc3

Reputation: 1306

For the record, as of 2012.04.21 it does not.

Upvotes: 1

Jon Skeet
Jon Skeet

Reputation: 1499770

The Google+ API is just HTTPS requests really, so you could do it manually if you wanted.

There's a beta version of a .NET client library available for general access to Google services, but I don't know offhand whether it would work with WP7 - it may well perform synchronous web requests etc. It's worth a look (and putting in a feature request if it doesn't work with WP7 already) but if it doesn't work, then just making the HTTPS calls yourself shouldn't be too hard.

(Disclaimer: I work for Google, but have had nothing to do with this API.)

Upvotes: 1

Paul Creasey
Paul Creasey

Reputation: 28824

It's in beta: http://code.google.com/p/google-api-dotnet-client/

I assume it's supports wp7, but i'm not certain.

Upvotes: 1

Related Questions