Everytime I try to get an app I get redirected to my FB page - api

When I go to facebook.com/developers to create an app for my facebook page, I get redirected back to my page. Facebook will not allow me to create an app. I need a secret and a key so I can do so FB customization to my website. I am at a total loss after working on this issue for 6 hrs.

This will happen when either you're "using Facebook as a page" or when you have not become a member of the Facebook developer community correctly. First log out of facebook, then log back in and test again.

Related

Authorise Pinterest App

I have added a collaborator for my Pinterest app, however, when accessing the colaberators account and clicking on the application there is no 'authorise' button or anything similar. The "You still need at least 1 collaborator to authorize your app before you can submit" warning still shows on the collaberators account.
Ant help would be appreciated, thanks!
We had the same problem. You need to at least add two co-workers, one as collaborator and one as tester. These must be different people. And then, after some while (!) the authorize button has appeared.
The co-workers need to accept the invitation as well, of course.
After submitting, it will take some weeks (!) until you get the approval.
I had issue. By reading and following accepted answer, I waited 5 weeks and still submit for review button was not there.
What I did was I authorise my app for code which later I used for getting access token.
Once I successfully authorised my app using below authorisation URL the "Submit for review button " appeared in a second.
Authorisation URL:
https://api.pinterest.com/oauth/?response_type=code&client_id=XXXXXXXXXXXXX&redirect_uri=https://localhost:8000&scope=write_public read_public&state=abcdefg
Use your client_id to authenticate to your app. Once you are done with that you can see the "Submit For review button" after refreshing the browser.
Hope it helps!
for those who have this problem, note that you have to test your application before you could autorize or send to revision,
You need 3 Pinterest account, or 2 friends
register one as developer and another as tester
then, with the secret key and the app id, put it on your client application
after that, test the login,
finnaly go back to your pinterest app and the button for "send to revision" you wiil find it enabled,
Please confirm that you are using same App ID and App secret in your application which is in developer pinterest app.
Here is a quick 2019 year update:
You need two pinterest accounts, they should be following each other
and should be collaborators in the APP.
Have a ssl protected call back url, they only accept https urls.
Finally all collaborators should authorize the app through your
application/site. For this you need to already have the pinterest sdk
integrated in your project.
Now you can submit the app for review.

connecting web page to facebook page

Ok, this is frustrating, I'm running in cricles, therefore I appreciate any hints or directions..
Having a web page, I need to have a share & like buttons on it. The SDK needs na APP ID to connect, so I've created an facebook page. Well, turns out page ID isn't the same as app ID. So, having right now a web page, a FB page and a FB app, how do I connect these all together?
I had tried to google how to "connect FB app to FB page". That only directed me to something about "Page Tab" at which point I found myself completely lost.
You don´t need a Page, you only need an App. Here´s where you can create one: https://developers.facebook.com/apps
After creating the App, you will see the App ID.

Facebook SDK - Unity - Login to another Account after first Login?

Hi i´ve a qestion so i integrated the facebook sdk for unity and there when you login once it stores your logindatat somewhere i´dont know so you don´t have to login again each time if you want to play the game how this said
"This property might be true when SetInit is called if the API detects that the user has already previously authed the app in a previous session. This means the user doesn't have to click the login button every time they play the game."
But now i want to know how i can login into another account if i logged in once ...
Thus i have to login the stored information which facebook sdk stores to login into an account.
Cause if i want to login after first time facebook don´t ask me to which account i want to login.
So there must be some "stored" playerprefs which i can overwrite so that the sdk thinks again thats must be the first login ? : /
Or isn´t that feasible ?
You have to logout manually if you have the Facebook App installed on your device. Then you can login with another account from your app. Otherwise FB.logout() should work to logout if you don't have the FB App installed and you'll be able to login via some browser again.

iOS Facebook integration,FBConditionalLog

I know this question has been asked many times, I've already done my research both on stackoverflow and on google, but nothing came up that resolves my problem.
I'm trying to integrate Facebook login in my application. I'm using the latest Facebook SDK which can be downloaded here. I'm not only trying to integrate Facebook login, but also other Social network login as well. So far, I'm able to accomplish them.
To integrate Facebook login, I've followed this tutorial. I've done exactly the same. My problem is that when user clicked on Facebook login button. Facebook login page appears in the browser, then asks for permissions. So far, it's working. After completing user credentials then click login button on the browser, I got this log FBConditionalLog: handleOpenURL should not be called once a session has closed, I got no error. Also, in my Facebook account, I've seen that I've permitted the application in the app settings. Normally, I would have got user session found log, if user was able to login successfully.
Do you have any idea, what I'm doing wrong?

how to edit where facebook sends visitor after using the facebook "sign in" app

I have a site www.crazyfloridadeals.com and this is a licensed directory and it has a built in feature for "sign in" using your facebook account and in order to do this you need a developers App ID and App secret which I did set up, I got the app to work but two things need to be edited and I can't figure out how to do this,
After you use the app facebook sends the visitor to crazyfloridadeals.com/profile/#= which 404's how do I get the app to send them back to the Home page? I read every articl and forum but could not find anything - any suggestions are where to find this
When you use the facebook app it goues through the "permissions" and it asks do you want to all "my company" to post on your behalf? I don't need this as I am only looking for basic user info (just like screen shot attached) how can I adjust what permissions are being asked for?
I am new to this and am sorry if these are easy fixes
Having looked at your site, it appears that the FB login button is being passed the paramaters redirect_uri="http://crazyfloridadeals.com/members/facebookauth.php?destiny=http://crazyfloridadeals.com/profile/#="
and scope="email,user_birthday,status_update,publish_stream"
There should be a configuration screen if this is some sort of CMS for the FB login plugin. Otherwise there may be a configuration file somewhere in the code files itself. Of note, to remove the "post on my behalf" message, remove the 'publish_stream' from the scope variable. See this list for other FB permissions. You may need a FB Dev account to view it. Obviously, you will need to change "http://crazyfloridadeals.com/profile/#=" to just "http://crazyfloridadeals.com/"