Can we embed authorization for twitter, linkedin, facebook, buzz in asp.net c# web application?
I want to implement authorization using social networks like twitter, facebook, Linked In. How can I authorized with all social netw开发者_JAVA百科orks into my asp.net C# web application.
Yes you can, but the authorization process in it's core will still be linked to the APIs of the services you're working on, depending whether such endpoints are available.
Here are some docs you might want to check out:
Facebook API
Twitter API
LinkedIn API
Once you have an authorization token, you can access some basic user information (e.g. username or nickname) and link it to your website.
精彩评论