Facebook provide an API For developers to integrate other platforms. Now i'm using c# .net for web application. But i don't know how to integrate with in. guide me how Facebook use for c#.net
Thank you,
You can do with using OAuth
Or Use Graph API
Related
We are developing an app that intended to access website data of other websites owners who are registered on our app.
What we want that user will login into their gmail account and provide our app access to their google analytics account for their website.
We need complete implementation using c# of google analytics API where we can ask user to give our app access. Any help will be highly appreciated.
You need to use Google Analytics Reporting API. There is quick start guide is available for the Java, Python and PHP. I have created custom reports in PHP.
Use this link: https://developers.google.com/analytics/devguides/reporting/core/v4/
Here you can use REST APIs in your C# application:
https://developers.google.com/analytics/devguides/reporting/core/v4/basics
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.
I'm using windows phone and try to integrate Facebook with my App.
But all I found that the login mechanism is using OAuth 2.0.
Could anyone explain why Microsoft embedded People hub and Microsoft Facebook App(XAP) can login without OAuth.
Are they using the WebAPI instead of the OAuth?
Thanks.
Try Parse I've used it on iOS, Android and Windows Phone 8. It's super easy to integrate, free and you'll get access to all of Facebook's API.
Currently, I have an app and I want to integrate it with Facebook. My App is bases on C# and now the C# SDK is deprecated. Some requests can't be made by client side requests (extending access token for example), so Javascript SDK can't help.
Is there anyone who knows how to integrate a C# app with Facebook when C# SDK deprecated?
Thanks
Facebook open graph api's over REST. Event though C# SDK is deprecated, it won't be that tough to write basic http calls with basic http library of C# to make api calls.
With regards to login, you would have to embed an instance of browser, as far as I can remember, C# had msie embed options. Using the browser embed, one would have to capture the access token returned on redirect and use it later for making http calls to REST interfaces of Facebook api's from C#.
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.