| bio | website | ntotten.com |
|---|---|---|
| location | Seattle, WA | |
| age | 29 | |
| visits | member for | 4 years, 2 months |
| seen | 2 days ago | |
| stats | profile views | 1,121 |
Nathan Totten is a Senior Technical Evangelist at Microsoft working on Windows Azure, ASP.NET, and Node.js. He is also the creator and project lead for the Facebook SDK for .NET.
|
Oct 12 |
comment |
Cannot connect to Facebook Connect This is actually not correct. As long as the url on your app settings matches your local url you can debug locally. |
|
Oct 12 |
comment |
Sending Facebook messages through their API - possible? You cannot send messages through the api. The extended permission "email" allows you to access their email address so you can send them a regular (non-facebook) email. |
|
Oct 12 |
comment |
Style facebook 'like' button Why is the text invisible? If you are looking for a dark like button you should use the colorscheme=dark configuration. You can see all the customization options here: developers.facebook.com/docs/reference/plugins/like Anything beyond the customizations they allow is forbidden. |
|
Oct 8 |
comment |
Can I use the Facebook graph api to get user's friends profiles pictures? The problem is that getting the photo isnt an api call. The graph url actually will just redirect you to the url. I dont know much about flash, but if I wanted to use the photo of a user for example, I would do this: <img src="graph.facebook.com/user_id/photo" /> So rather than making the $facebook->$api call just bind your photo to the url. |
|
Oct 5 |
comment |
Publishing to facebook from different websites using one APP ID Posting messages won't be an issue. As long as you have a valid auth token you can make api calls from anywhere. The only issue with the domain is the initial authentication. |
|
Oct 5 |
comment |
How do I get read_stream permissions from facebook If you are starting a new project, I would suggest you take a look at my SDK at facebooksdk.codeplex.com. The Facebook Toolkit has lagged behind in recent months in supporting the new authentication system and apis. We currently use the Facebook .Net SDK in many large scale Facebook apps and are migrating many of our old apps to this new SDK from the Facebook Toolkit. |
|
Oct 5 |
comment |
Force Facebook to ask user password when using OpenGraph If your site really needs to be that secure, I would suggest using some sort of secondary authentication system. One suggestion would be to retrieve the user's email address. You can access this by asking for the 'email' extended permission. Once you have the email address, just send them a verification link. Only, after they click the link would you allow them access to your site. |
|
Oct 5 |
comment |
Force Facebook to ask user password when using OpenGraph That is not correct. This will still behave the way he is trying to avoid. What he is asking to do is not possible. |
|
Oct 3 |
comment |
Which Facebook .NET Library is the best to use? That SDK really doesn't do a whole lot. If you want something that supports oauth, the graph api, and the old rest api you should check out facebooksdk.codeplex.com |
|
Oct 3 |
comment |
Which SDK to use for Asp.Net with Facebook This SDK is very old and currently not being maintained. Check out facebooksdk.codeplex.com for an sdk that supports oauth and the graph api. |
|
Sep 22 |
comment |
Silverlight Facebook client You could try the Facebook .Net SDK here facebooksdk.codeplex.com. This SDK supports all of the newest Facebook Apis and authentication systems. |
|
Sep 22 |
comment |
how to login directly into facebook using facebook api through my ASp.net webservice using c#? Agreed. YOu are not allowed to do this. You have to request an access token. Check out this SDK for samples on how to do that: facebooksdk.codeplex.com |
|
Sep 21 |
comment |
Prompt wall publish (Facebook) using Old Rest API You dont use the rest api for that. If you want to prompt a dialog you have to use the javascript sdk. See the link I have provided. You can call the FB.login method on the client to prompt a login dialog. There are also samples of this in the facebook sdk. |
|
Sep 20 |
comment |
validating fb cookie using md5 hash Be careful about using the fb_sig authentication. That is going away very soon. If you are starting a new app it would be better to use the new OAuth 2.0 authentication system. developers.facebook.com/docs/authentication/canvas |
|
Sep 19 |
comment |
Is there an alternative to FB.Connect.createApplication() in Facebook's new Javascript SDK? One other thing. If you REALLY need this functionality, it is possible that the REST call exists, but that it isnt documented. I have found several undocumented rest calls by browsing through facebook's developer forums. Sometimes Facebook just doesnt keep their docs up to date. |
|
Sep 19 |
comment |
How can I get the same HMAC256-results in C# like in the PHP unit tests? If you dont want to do this all yourself just use the Facebook .Net SDK on Codeplex. It will handled signed request for you. facebooksdk.codeplex.com |
|
Sep 19 |
comment |
How to decode OAuth 2.0 for Canvas signed_request in C#? The Facebook C# SDK on github does not handle anything with authentication, it only does api requests. |
|
Sep 19 |
comment |
Facebook Connect and ASP.NET As an update for anyone who stumbles upon this now. There is a newer SDK that will make this a lot easier using all the newest facebook OAuth features. Check it out here facebooksdk.codeplex.com |
|
Mar 12 |
comment |
Storing Settings for Multiple Projects Commonly in C# Are you talking about the .config file setting or more generic settings? |
|
Mar 9 |
comment |
Good ASP.NET MVC pattern for form submit and immediate result display Yeah, you will. There isn't, to my knowledge, a solution that will solve both of your requirements. You either have to use cookies, use a querystring variable, or allow for possible re-posts. |