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.
Related
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 .
I am about to emabark on a project that will use Azure and Facebook C# SDK. I was just wondering when will the documentation be available on the C# SDK website? I have no idea where to begin and would love some documentation/tutorials.
Thanks,
Rhonda
As you need some pointer about where to begin, I sure can give your some pointers but get ready for a time of adventure because you sure going to hit some hardtime. What you really need is to develop your project in two steps:
Create an ASP.NET (MVC?) Web application using FaceBook C# SDK
Convert this ASP.NET application to Web Role to deploy to Windows Azure
To start your development for 1) I would suggest following this Documentation:
http://csharpsdk.org/docs/web/
http://csharpsdk.org/docs/web/ajax-requests
I would also suggest to look SO for more assistance during your development when you hit errors as there are lots of solution discussed.
Finally when you come to 2) you can follow how Deploy asp.net application on windows azure..?
This documentation is in progress as of Feb. 11, 2012. We are working
on big improvements for the coming weeks.
Source: http://csharpsdk.org/docs/azure/
So yea, that's your answer.
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.
Any one know Google Talk Api for C#.Net?, Please help.
Check out Google Talk for Developers.
It uses the Extensible Messaging and Presence Protocol (XMPP) (Originally called Jabber as #kbok mentioned).
There are numerous XMPP libraries available for .NET. The agsXMPP SDK .NET library being one of them.
Here's a tutorial in C# to get you started:
Google Talk (GTalk) Autoreply using .NET
Google Chat uses the Jabber(AKA XMPP) protocol behind the hood. You can find a .NET binding here : http://code.google.com/p/jabber-net/
This project uses Jabber.net to access Google Chat. That should get you started.
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.