Questions tagged as 'facebook-api'

2
answers

Intent to open profile with the facebook app using Page ID, Android?

I am trying to open a facebook profile with a button, but I have tried and always open with the browser and not with the facebook app, someone can help me please, so I have it at this time. protected void onCreate(Bundle savedInstanceState...
asked by 10.05.2017 / 15:56
2
answers

Facebook login and Registration in same step

I have the following situation: The service I have is half functioning. I did not do it, so I want to modify it a bit so that I do two steps in one, that is, currently when I click on the button that I have for Facebook it only registers bu...
asked by 29.10.2016 / 04:49
0
answers

I can not log on to Facebook on a UWP App

I'm running a Windows Phone 8.1 App to UWP . The app 8.1 published, log in to Facebook with windowsazure.mobileservices . In UWP I'm trying to use FacebookService ( link ), but using the ID that I used before, I do not get...
asked by 22.10.2016 / 17:40
1
answer

How to get facebook friends with the Graph API?

I have recently been asked to integrate Facebook with a website. The initial integration of login has worked correctly, but now it has been requested to get the list of friends of the user who is connected to the site, and to be able to send an...
asked by 05.06.2017 / 20:43
1
answer

facebook login android

I want to obtain the data of the public profile {email, id and the profile picture}, but when I start my application it falls, then I will leave my code @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(...
asked by 03.11.2016 / 20:16
2
answers

How do you perform this json on vb.net?

I am using the Graph API of Facebook with webhook to channel an incoming message from a page in my application. The response received from the API is as follows: { "object":"page", "entry": [{"id":"594052300785675", "time":14...
asked by 23.05.2017 / 17:28
1
answer

Check status Facebook

I am working with the Facebook API, more specifically with the web SDK. I have created a login button in the index.html that when you click on it, redirects you to Facebook and in case you log in, you are redirected to the main page. Here...
asked by 17.05.2017 / 19:06
1
answer

I can not get the user's name Facebook api js

I have this code to try getting the user's name FB.api('/me', function(response) { console.log('Successful login for: ' + response.name); }); but the answer that the console gives me is:    Successful login for: undefined without...
asked by 30.06.2016 / 21:56
1
answer

Log in with FaceBook

I am trying to make the connection with FaceBook from my web application but it is not working, previously it worked correctly. This is the way I declare the script in the parent template so to speak, since I'm using the model MVC of...
asked by 25.07.2018 / 00:59
2
answers

I can not redirect site after Login Facebook

Hi, I have the following JS code to execute the action when the login is made: FB.getLoginStatus(function(response){ mystatus(response); }); function mystatus(response) { if (response.status === 'connected') {...
asked by 30.06.2016 / 09:00