Facebook C# SDK Windows Application - c#

Does anyone has a sample application, which can show the way on how to authenticate a user and get his access token, so that other functions can be used.
Thanks

this guide should help you: http://multitiered.wordpress.com/2010/08/05/getting-started-with-the-facebook-c-sharp-sdk/
UPDATE:
Well it seems like that guide refers to an SDK which has been depreciated. I recommend you to download DotNetOpenAuth which has a sample for Facebook as well.

Related

How to migrate from Google+ Login to Google Sign In in c# MVC

My web site allows users to register and log in with their Google Account.
My c# MVC app uses the feature the template offered using Microsoft.AspNet.Identity.Owin.
I have received an email from Google that they are shutting down Google+. The email said to transfer over to Google Sign In.
Any good articles that explain this topic for c# MVC apps using Owin features?
Any pointers where to start would be greatly appreciated.
thanks,
Michael
Just update the package Microsoft.Owin.Security.Google to version 4.0.1.
You can read more here.
Or see a workaround for .NET Framework 4+ here.

How to Use FB API Graph within C# Desktop Application

I just started a projects that need to be created with C# Desktop Application using Visual Studio 2008 (.NET 3.5).
Now I really don't understand where I have to start. I just start to "googling" and found that there tools C# FACEBOOK SDK. But after I read more, now it's not supported from Facebook. So, please anyone can help me.
MY GOAL : To read facebook timeline of user from a desktop application.
Can I user any other SDK that supported ?
Or maybe can I use Facebook PHP SDK ?
Your help really appreciated.
Thankyou
You can use Facebook SDK. Its possible to use, connect, post, read informations and anothers tasks.
To start, have some information at web:
Open NuGet manager at Visual Studio and ask for Facebook SDK.
Read Facebook Developers Starters Guide: https://developers.facebook.com/
When we start a FB app, a token is necessary. Read about this at: https://developers.facebook.com/docs/apps/register
I hope this helps to start .

How to login using Google Plus API using C#.Net from asp.net code behind and get user name

How to login using Google Plus API using C#.Net from asp.net code behind and get user name
Please give me some idea.
Note:- i don't want to expose client id & secret to end user by keeping those in .aspx file
Thanks,
Vijay
with OAuth you can do that, I recommend reading about OAuth and how you should do it.
I LEAVE THIS LINK FROM GOOGLE SITE DEVELOPERS
https://developers.google.com/accounts/docs/OAuth2
Greetings.
Here is a Quick-start sample app for C# / .NET guide that should help you get started with using the Google+ Sign-In button via C#/.NET.
You may also be interested in this .NET Google API Client Libraries documentation describing how to use them with OAuth 2.0.

Access Facebook from a C# Windows Client

is there any C# Library that enables me to acces my Facebok Account from a C# Application. All I've found are ASP.Net Libraries but I don't wan't to use ASP. I wan't to create a Windows Forms or WPC Client for Facebook. Is this possible? Basically I'm looking for something like Facebook Connect on the iPhone I guess.
Thank you very much
CaptnCrash
Yes, you can access the facebook API from WPF. check out the Facebook developer kit
We recently launched a C# SDK. You'll need to get the access_token using the OAuth flow via some interaction with a web browser and then the SDK will help you in making API calls.

How to make facebook apps with .net

Can i create an application that lives inside facebook using .net ? if so what do i need ?
Try looking here - it's a Facebook development kit provided by Microsoft, complete with code samples.
Yes you can ,your start will be searching for the facebook api (for .net) then download it and learn how to use it.
thats is.
http://www.codeplex.com/FacebookNET
I've created a VS.NET Starter Kit (C#) for the Facebook Developer Toolkit (see codeplex) here.

Categories