Silverlight / WPF - How can I get the Birthday alerts on Facebook in WP 7.1?

Asked By chandu sekhar on 28-Jun-12 04:05 AM
Earn up to 10 extra points for answering this tough question.

 Hi, I am developing an application in WP.I want to get the birthday alerts on facebook from a particular User?
Is there any way like OAuth or API? Send links

Thanks In-advance,
chandu
[)ia6l0 iii replied to chandu sekhar on 28-Jun-12 11:36 PM
There are already tons of app that can do this. For e.g. Birthday Diary, the free app lets you view and manage friend's birthdays.  Have a look at this, and many more apps, and then decide to do your new app. 

And on the positive note, you should visit http://facebooktoolkit.codeplex.com/ . This is the codeplex version of the toolkit, and there is lots of goodies and information here. For a windows phone 7 sample, look at 
http://facebooksdk.codeplex.com/wikipage?title=Windows%20Phone%207%20Sample&referringTitle=Documentation

Hope this information suffices.
Jitendra Faye replied to chandu sekhar on 29-Jun-12 12:24 AM
One of the best libraries available for Facebook and .NET is the Facebook C# SDK.

http://facebooksdk.codeplex.com/

There are a couple sample projects for integrating your Facebook app with ASP.NET MVC, Silverlight, and WebForms.

The package is available from NuGet as well.

One of the nice features of this library is it's use of dynamic objects. This article explains the advantages of using dynamic over strongly typed methods.

http://ntotten.com/2010/09/dynamic-objects-and-the-facebook-c-sdk/


Using the Json.NET library, serializing the dynamic responses to POCO is very straightforward.

Hope this will help you
Asked By chandu sekhar on 29-Jun-12 12:54 AM

Thank You all
help
Hi All I want to integrate facebook connect in my web application.so that we login through facebook id in my website. plz help me soon??? Thanks in advance???? Implementing Facebook Share It's easy to implement Facebook Share. If you've already implemented http: / / wiki.developers.facebook.com / index.php / Facebook_Connect on your site, you should use the http: / / wiki.developers.facebook.com / index.php / Fb:share-button_%28XFBML%29 tag. For more information, see http: / / wiki.developers.facebook.com / index.php / Facebook_Share#Using_Facebook_Share_on_a_Facebook_Connect_Site. Otherwise, if you haven't implemented Facebook Connect on your
Facebook.Components.FacebookService _fbService = new Facebook.Components.FacebookService(); Ask question with proper description so that you will get reply Regards I think you want to use Facebook in your asp.net site . One of the best libraries available for Facebook and .NET is the Facebook C# SDK. http: / / facebooksdk.codeplex.com / There are a couple sample projects for integrating your Facebook app with ASP.NET MVC, Silverlight, and WebForms. The package is available from NuGet as using dynamic over strongly typed methods. http: / / ntotten.com / 2010 / 09 / dynamic-objects-and-the-facebook-c-sdk / Using the Json.NET library, serializing the dynamic responses to POCO is very
dataset which contains one datatable (called Employee). Employee datatable has three columns: Id, Name and Birthday. Birthday is of type datetime. My employee datatable has two records. The records look like this: Id Name Birthday 1 Name1 1 / 16 / 2006 10:46:44 AM 2 Name2 which means that the Birthday column of second record is empty. When I serialize the dataset on the disk in and then read it back from the disk the records look like this: Id Name Birthday 1 Name1 1 / 16 / 2006 10:46:44 AM 2 Name2 1 / 1 / 0001 1
how i can get facebook friends to list in my website??? Facebook.FacebookAPI api = new Facebook.FacebookAPI(token); JSONObject me = api.Get( " / " + fbConnect.UserID); JSONObject friendsData = api.Get( " / me / friends" ); var ViewData[ "Name" ] = me.Dictionary[ "name" ].String; ViewData[ "Friends" ] = friendsList; http: / / onishimura.com / 2010 / 08 / 11 / facebook-c-and-asp-net-mvc-code-samples-for-friends-list-activities-list-and-wall-posts / For FaceBook Developer Link: https: / / developers.facebook.com / http: / / www.stevetrefethen.com / blog / DevelopingFacebookApplicationsInCWithASPNET.aspx Check the http: / / developers facebook.com / docs / reference / api / Also please check the below link http: / / devtacular.com / articles / bkonrad / how-to-retrieve-user-data-from-facebook-connect-in-aspnet / here is how you can do that from javaScript API OF facebook
Validate birthday or age in EnterpriseLibrary RelativeDateTimeValidator [RelativeDateTimeValidator(-120, DateTimeUnit.Year, -18, DateTimeUnit.Year, MessageTemplate = "Invalid birthdate.")] How to validate birthday? ( 616 Views ) keywords: RelativeDateTimeValidator, EnterpriseLibrary, Validation, Validate birthday, DateTime description: Validate birthday or age in EnterpriseLibrary RelativeDateTimeValidator
06-Jun-13 10:07 AM Is there any way to create a website with facebook login? meaning if the users is logged in facebook, consider him / her as logged in the website and get some minimum data of user information from facebook thx There are Facebook Developer toolkit, Facebook Connect and authenticating using the most recent version of the Facebook Developer Toolkit. check this link http: / / devtacular.com / articles / bkonrad / how-to-retrieve-user-data-from-facebook-connect-in-aspnet / http: / / developers.facebook.com / docs / guides / web http: / / forum.developers.facebook.net / http: / / connect.facebook.net / en_US / all
Hello, I have 1 web applciation in c# In taht I have used facebook rest api to interact with the facebook account. Now I want to display the photos shared by users on the facebook page in my page. I have searched & found that I have to access some table Kindly give some suggestion along with some code or example. Check the developer site of facebook https: / / developers.facebook.com / docs / reference / api / album / https: / / developers.facebook.com / docs / For this you have to use FaceBook dlls like this- You have to
hi all , i have created a facebook application using facebook c# sdk. with that i getting the user info. . but i need to get the you a light for you: http: / / stackoverflow.com / questions / 10006708 / getting-fb-page-data-from-facebook-using-c-sharp Thanks You can get libraries for Facebook and .NET is the Facebook C# SDK. http: / / facebooksdk.codeplex.com / Here you will get some sample projects for integrating your Facebook app with ASP.NET MVC, Silverlight, and WebForms. One of the nice features of this using dynamic over strongly typed methods. http: / / ntotten.com / 2010 / 09 / dynamic-objects-and-the-facebook-c-sdk / Using the Json.NET library, serializing the dynamic responses to POCO is very
With more than 500 million active users and 50% of active users logging on to Facebook in any given day, it makes sense to use Facebook's free controls to allow your site's users to log in with their facebook credentials. In addition, if you remember the recent Sony fiasco, it may be comforting to know that with Facebook login you do not need to store any users' password information - they supply that when they log in via Facebook. I've done some research into the use of the Facebook FBML API and have tried several implementations of facebook log ins. One, that I found on codeplex.com seemed to be simple enough but