Click here to Skip to main content
15,891,597 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
I read facebook official article about using Facebook account kit with web apps , but it is for PHP and NodeJS. I don't know about NodeJS and PHP so I can not convert that thing to .NET world. Can anyone help me with this ?

Official documentation link
Facebook Account Kit for Web

What I have tried:

I don't know php and NodeJS how can I try ?
Posted
Updated 14-Apr-17 6:14am
Comments
Richard MacCutchan 14-Apr-17 11:58am    
Google will find articles for you.
Bipin Paul 22-Apr-17 1:37am    
I tried and trying but not getting even a single result related to asp.net core.
Richard MacCutchan 22-Apr-17 4:12am    
So maybe no one else has tried it yet.

1 solution

No one is interested in paying for a full featured team to create an API for every particular platform — I am an ASP.NET Core developer, and I hate the fact that there are very less frameworks and APIs available to get things working.

However, since there is no such library, what you need to use is REST API. You should look in the PHP documents, or simple web based solutions and see the request methods and required parameters etc. You can then send the request to it manually using HttpClient object and it would work perfectly. That is exactly, what every API is doing.

C#
using (var client = new HttpClient()) {
    // Send the requests
}

Also, Facebook provides JavaScript SDK that you can use for this as well, JavaScript SDK[^], utilize this on the page load events and request data from Facebook servers.
 
Share this answer
 
Comments
Bipin Paul 22-Apr-17 1:36am    
Thank for your response I noob developer so I don't know much things , can you write an article about whole process ?
Thank you !!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900