Related to social media like and share buttons - asp.net

Which is the best method to add like and share buttons of Facebook and Twitter and Google+.

Check the API documentation for how to integrate facebook functionality into an ASP.NET site:
https://developers.facebook.com/docs/web/
Start with that and then once have the facebook integration figured out it should be simple to find twitter and google+ APIs to do the same for them.

Related

How to integrate the Etsy messenger in WordPress?

How can I integrate the Esty messenger with the WordPress website. I did not find any appropriate solution for this I also do google and check the Etsy forums but nothing found. Is there any way to integrate the messenger like the other messenger or chat tool that we use in website.
Currently I am using only the link of my Etsy profile that is something like https://www.etsy.com/shop/{username} but it just open the profile page instead of messenger.
This will show page something like below screenshot
Sadly, Etsy do not have plans to support the messenger through their API at all. This is intentionally disallowed to avoid spam/abuse, so there is no official way to do this.

Asp.net and facebook share buttom

i have an asp.net web application and i need to add a button that shares content to facebook.
Is there any way to do it ?
You can share your webpage on Facebook by referring to the developer guide provided by facebook.
https://developers.facebook.com/docs/sharing/reference/share-dialog

Social websites API for .NET

I wanted to integrate social websites using their API. Is there any free API which ease this work? Like Facebook, LinkedIn and Google.
My intention is to give the user the opportunity to login/register through these websites to
get profile information specially from LinkedIn and Facebook.
Check out the Facebook SDK. There is a NuGet which will get you started quickly:
Documentation
Source code
Facebook has a great API for that and documentation, and you can download the Facebook API if you need it.

Facebook API in Flex

If anyone has experience with the Facebook API,
What I’m trying to do is have a logged-in FB user, in my FB app, be able to browse photos uploaded by friends [not necessarily with themselves in those photos -- but just to see photos by their friends]. Is this possible?
Thanks in advance!
I think it's possible. It depends on how you want these photos to be displayed.
I have never connected the facebook API with any Flex app but I have experience with projects that use Iframe to display HTML content in FLex apps. You can find the Iframe project here:
iframe project. In my opinion you can generate these photos in a php script that uses the
facebook API and display its result as Iframe in your Flex application.
I've described the way how the IFrame can be used on my blog here:
Iframe in Flex . I use this approach very often and I've never had any problem with it.

How to use Twitter as the Login for a Website

We are developing an asp.net 2.0 web application in that user can sign-up or sign-in using twitter account.
when the user click on the twitter button, it should take you to the twitter login page.
after your login is successful twitter should able to forward me back to my page webpage.
Please let me know.
eg.
twitter
For this you use Twitter's OAuth authentication framework. It's used so that users don't have to directly enter their user + password into your site. (I assume you know how the front-end to that works already.)
You can use this little example to use OAuth from .NET - it is built for ASP.NET. (The demo the guy provides is My Tweeple.)
Twitter actually includes instructions for using OAuth to make a Facebook Connect-style system.
http://dev.twitter.com/pages/sign_in_with_twitter
Twitterizer library have sample ASP.NET application that will walk you through the OAuth authorization process and attempt to explain what’s going on and how you can do the same in your application.
This article demonstrates that How to integrate Twitter into web application
using Twitterizer library.You can allow your visitors to post tweets, view their timeline and much more.
Here is an example shows how to implement Twitter OAuth with .NET and attached sample code.

Resources