Asp.net and facebook share buttom - asp.net

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

Related

Asp.Net Identity Social Login - Open in fancy box

Currently, I am working on ASP.Net Identity related project. I implemented code to use external login providers like Google, Facebook, Microsoft, Twitter and Yahoo in our project. It's working fine.
But, our client is asking us to open external provider login page in a fancybox and on clicking login button, the page need to be navigated to our actual project based on validation of login credentials. Please suggest me any solution.

How to show thumbnail of a asp.net website on facebook?

I developed a Asp.net website that play youtube videos on one page. I hosted it in windows Azure recently. But if I took a url of a page which play video and post it on facebook then facebook doesn't show any thumbnail. Can any one help me pls ?
to understand my needs you can post both of the following urls to facebook.
http://hiruvideos.hirufm.lk/index.php?page=videos-watch&id=1705
http://mostamazingvideos.azurewebsites.net/PlayVideos.aspx?uid=1
Second one doesn't show any thumbnail.
You are missing the Facebook Open Graph meta tags that tell Facebook what image to show when somebody shares the link to your website. Follow the best practices at https://developers.facebook.com/docs/sharing/best-practices (Section 3 talks about the meta tags).

Using Salesforce as IDP for ASP.NET?

I have a asp.net website. I am going to post a link to this website in SalesForce. Our requirement is that any user who has logged into SalesForce should get logged into the custom web site when he clicks on the the link.
Is it technically possible to even do this ?
Yes.

need to create login page in web site using Facebook login with asp.net?

I need to create an Login page which uses Facebook account. I have seen code in PHP language but i want to use it in asp.net how should I use it and how it will retrieve my data with Facebook?
You can use the Facebook C# SDK
You may wanna take a look: http://developers.facebook.com/
More specifically here: http://developers.facebook.com/docs/beta/opengraph/tutorial/

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