user156888
user156888

Reputation:

ServiceStack Social Auth and Xamarin

We're using the social auth part of Servicestack to authenticate users against our API. This works like a charm using a PHP client.

My question is - what would be the best way of integrating social login that uses a servicestack API into a xamarin app?

I have used the Azure social login stuff before but that obviously wont work. How can I authenticate a user inside a xamarin app against facebook, twitter, google that can then pass that auth to my API?

Upvotes: 1

Views: 297

Answers (1)

SKall
SKall

Reputation: 5234

Is there any reason ServiceStack won't work with your mobile application? It should as ServiceStack.Text works and the web clients work as well on both Android and iOS.

Anyways, you could always use Xamarin.Auth for authentication: http://components.xamarin.com/view/xamarin.auth

Upvotes: 1

Related Questions