0
votes
1answer
8 views

Error Uncaught TypeError: Cannot set property 'onclick' of null

Im having error on the Facebook Javascript "Uncaught TypeError: Cannot set property 'onclick' of null " line 187 and line 187 is: " button.onclick = function() {" All the code is: <script ...
1
vote
1answer
24 views

Stackexchange API Implicit vs Explicit

This question is inspired by the documentation on the stackexchange and facebook API (http://api.stackexchange.com/docs/authentication) but is probably more widely applicable to OAUTH 2.0 in general. ...
0
votes
1answer
43 views

Fix Rails oauth facebook x-frame-options sameorigin error

I can't for the life of me get my Facebook canvas app to display. Chrome console displays this error and nothing shows up inside the iframe - it's blank: Refused to display 'http://mysite.dev/' in ...
0
votes
0answers
14 views

Before_filter for Omniauth facebook?

Like The Devise Gem => before_filter :authenticate_user! how can I do the same for Omniauth_facebook gem? I tried: before_filter :authenticate def authenticate redirect_to :login unless ...
0
votes
0answers
16 views

Changing permissions at the app level - What does this do to existing users?

My app is currently asking for the bare minimum in terms of permissions. I'm looking to request publish_actions for Open Graph integration. However, i'd like to leave existing users unaffected ...
-1
votes
0answers
27 views

Instagram with Facebook Integration Demands Password [closed]

Since Instagram allows the use of Authentication with Facebook (on iOS), what's the reason for them to ask for a password afterwards? I am interested in knowing a bit more about the authentication and ...
0
votes
0answers
13 views

Logon options now one “primary”account

This most recent update of Facebook took us back a step on our iPad. Now Facebook opens up with the option to select one account that opens without a password, with the option below "is this not ...
0
votes
1answer
44 views

Post to Facebook wall from own application

I have created a Facebook application under developers.facebook.com and would like to use it's access_token in order to post a message to my own feed: url = ...
0
votes
0answers
105 views

Facebook server-side login authentication issues 27th of april 2013

Im trying to make a facebook login connection, så that it will be easier for my future user to sign up to my web site. But I keep getting: echo("The state does not match. You may be a victim ...
0
votes
0answers
26 views

Browser window with error pops up when using azure access control from WPF client

I am currently implementing azure access control as our default authentication platform for a number of different applications that we support both WPF clients and websites. I am seeing the following ...
0
votes
2answers
53 views

How do I implement facebook login into an app I just started developing?

I'm all very new to developing android applications and have only a base amount of knowledge when it comes to developing such. I'm trying to start off with making some implementation of the Facebook ...
0
votes
1answer
128 views

Facebook Authentication Dialog not showing after clicking on Facebook Login Button in Android

I am working on login with facebook in Android. I am referring to the tutorial mentioned in the Facebook Developers Scrumptious Tutorial. But I am failing at the first step itself i.e. Authentication. ...
0
votes
2answers
38 views

Facebook login authorisation for my website

I am building a website in PHP that has a log in section. For this I have a table in a MySQL database that stores 64bit hashed passwords and the users details. When a user enters their email and ...
3
votes
2answers
52 views

integration application with facebook

Is is possible use Spring Social to authentication via Facebook ? Suppose I have a web application and want to log in there using your Facebook account. Can someone show me an example of how to do it ...
0
votes
1answer
22 views

Rails Multi Authentication

My application provides two types of authentication - usual email/password or with facebook account. Authentication with FB is dealed by separate model "Authentication", which belongs to user. So when ...
0
votes
0answers
14 views

Facebook returns 0 if log out from another browser

I am using PHP sdk for facebook authentication. I stuck at weird scenario. Suppose I logged into my website using facebook in Firefox. I logged to facebook(same account) in chrome and when I log out ...
0
votes
0answers
14 views

Facebook authentication distinguish between registration and login

I'm using Facebook SDK 3.0 for authentication like in "SessionLoginSample". Is there any way to know if it's a first time that the user make a registration (and not login), from the facebook SDK? ...
2
votes
1answer
74 views

How can I do reauthentication in Facebook using the PHP sdk?

I'd want the user to re input password before they can login to my app. The facebook documentation only shows it using the Javascript SDK. Can someone please guide me or give me some references on how ...
3
votes
0answers
220 views

Could not fulfill request (error code 7) via openActiveSessionWithReadPermissions with Facebook test users

Background Recently upgraded to Facebook SDK 3.2 Tested on both device and simulator (iOS 5.1 through 6.1) Error is only present when attempting to authenticate Facebook test users. Error The ...
1
vote
2answers
100 views

What is the best database type to store facebook UID?

Users of my application can authenticate via Facebook, so I store facebook uids in my database and when user logs in I need to query my database like this: SELECT * FROM users WHERE uid = _SOME_UID_; ...
0
votes
1answer
41 views

Show my own Facebook's user albums on my PHP site

My question is almost the same as this one, but I can't find the answer there. I just want to show my Facebook albums on a PHP page. I know that for my site to access a Facebook user's info, I need ...
0
votes
1answer
36 views

Permissions en SDK Facebook 3.0

I am using the new SDK Facebook 3.0. I know that when I want to request permissions (no basic), I have to set it in the LoginButton like that: ...
0
votes
1answer
36 views

Unable to login FirebaseAuth on iOS

I currently get this error when using FirebaseAuth: Domain=com.apple.accounts Code=7 "The Facebook server could not fulfill this access request: remote_app_id does not match stored id " ...
1
vote
1answer
237 views

facebook js login page keeps reloading in IE10

I have implemented a simple facebook login script for my facebook page tab app. It supposes to authenticate the app to the user. It works fine in all browsers, but IE (I have IE10 for testing the ...
1
vote
0answers
215 views

FB.getLoginStatus doesn't fire callback in native Android browser

This problem had just showed up in my app when I view it on the native Android browser in ICS and Jellybean. All works as intended on desktop browsers and even Chrom for Android. This has occurred in ...
0
votes
1answer
34 views

Allow the user to choose what permissions they give?

I am developing a Facebook app and I am asking the user for quite a lot of permissions when they login. I am referring to the user & friend permissions here. I would want to let the user choose ...
0
votes
1answer
138 views

Facebook request permissions example?

I've been looking quite a lot for an actual example of how to implement asking for permissions with facebook login, but I couldn't find any. All I can find is the name of the permissions, advice on ...
0
votes
1answer
33 views

facebook app doesn't authenticate on canvas [closed]

I've made my facebook app. It starts with asking the user to authenticate. After the user has authenticated the app the app works as I have designed it. All steps in the process are working on my ...
0
votes
2answers
112 views

Integrating Facebook into android - login permissions

I am in the process of integrating Facebook login into the android app I am developing. I would like the app to be authorised to post/publish to feed/timeline. At present the user is receiving two ...
1
vote
0answers
194 views

Using Facebook Login in Native Desktop App

I'm writing a VC++ app and I would like to allow users to login via Facebook. Looking through the documentation, it looks like they only support php on servers, JavaScript, and native mobile clients. ...
2
votes
1answer
116 views

Single account for multiple OAuth providers (Facebook, Google, Windows Live)?

I have a web application that allows registration and authentication through Facebook, Google and Windows Live. Each OAuth request has the required scope to retrieve associated e-mail addresses from ...
0
votes
0answers
115 views

Facebook Authentication and Wall Post in Windows Phone using VB.NET

I am trying to build a Windows Phone app that, among other things, gets the user to post an update to their Facebook Wall page. Here is what I want to achieve: Authenticate via Facebook Post an ...
1
vote
0answers
151 views

Facebook single sign on with ios 6.0 and storyboard

I have used following tutorial to use the new 6.0 Facebook integration for signing in. iOS 6 Tutorial: Integrating Facebook into Your Applications Here I dont need the Facebook SDK just new social ...
0
votes
1answer
55 views

Database scheme for user logging with different accounts

currently I need to provide web site logging for different social accounts (facebook, google, twitter and so on). I know that stackoverflow has same system and I wonder if there is stackoverflow ...
0
votes
1answer
49 views

How to automatically authenticate users with their facebook accounts, providing they have connected to my website before [duplicate]

UPDATE: It seems that this is a duplicate question. Sorry for not searching thoroughly before posting. I'm building a website using PHP that allows users to sign in via their Facebook accounts. ...
0
votes
1answer
42 views

Getting ERROR bad Request-Line

I have a Canvas Facebook App which has a developer version(for test & dev purpose) accessed through localhost and a staging version deployed to Heroku. Whenever I try to access the developer ...
0
votes
0answers
48 views

Facebook OAuth login no longer working as of today

Starting today the facebook oauth login from our iOS app no longer works. Was working fine until today...did something change with their Feb. 6 changes that we had to account for and missed? Here is ...
0
votes
0answers
36 views

Server Side Facebook Authentication

https://developers.facebook.com/docs/howtos/login/server-side-login/ Following this tutorial I am able to login to a Facebook account regardless of the account logged into the integrated iOS Facebook ...
0
votes
0answers
66 views

Model from one Django app not recognized in another's View

I have a django install with two apps: App and facebook_connect. I've extended the User model with App.Member—which includes fields that need to be created or updated with the facebook_connect app. ...
3
votes
1answer
81 views

Could iOS social api be used to authenticate people (to let people login to your app) using facebook or twitter?

Clarification If you want to use ONLY the iOS provided social API (the accounts framework) can you let users login to your app, with their facebook or twitter accounts? If yes, then what do you use ...
1
vote
0answers
18 views

How to allow webapp authentication to facebook while blocking www.facebook.com? [duplicate]

How to allow webapp authentication to facebook while blocking www.facebook.com? Company is using a SAAS webapp that is using facebook for authentication. But we cannot allow access to ...
1
vote
0answers
224 views

How do I get access to my client ID and auth? Original developers moved on

OK, here is my situation. We had two developers create a Social Networking program for us. They created a feature that allows it to link to your Facebook account. They said they used a the standard ...
0
votes
0answers
37 views

Can a Facebook App specifically NOT request permission to post on the user's behalf?

Building for the web using Facebook's javascript API. On user login, is it possible to request a set of permissions such that the "Who can see posts this app makes for you on your Facebook timeline" ...
1
vote
0answers
45 views

What is the redirect_uri for a Facebook bookmark?

On an ipad, when using Facebook in safari, there are bookmarks for apps which go to mobile web versions. The url looks like this: ...
0
votes
2answers
317 views

Facebook does not show authentication when running under canvas

I have a web site already integrated with Facebook login, using server-side authentication. I have an issue to turn it into an application running under Facebook. The problem is that Facebook does ...
0
votes
1answer
114 views

Login to Facebook on Android and getting an access token in return

Firstly I apologize if this is a question that has been asked many times. There have been too many different versions of doing this (many of which include code that are deprecated). I would like to ...
1
vote
0answers
30 views

Authenticate WebSerivce with Facebook/OpenID

Simplified background: Website that allows users to upload and comment some content, let's say images (classic CRUD web application). Three ways to sing in into the system: classic username/password ...
1
vote
1answer
177 views

Display stream of public Facebook posts without logging in

I'm building a website, and I'd like to display a simple list of posts from my public facebook page. I got this working well using the GraphAPI and formatting the data on the server side, but then my ...
1
vote
1answer
111 views

Perl - Authetication Graph API loop

I want to get FB-user data via the Graph API (with Perl). I have an facebook-application, configured as "Website with FB Login". I'm using Net::Facebook::Oauth2 the app is configured with a ...
2
votes
1answer
143 views

Verify Facebook Access Token for specific App

I need to verify that users on my iPhone app are actually logged in to my Facebook app. I'm able to verify their user id by retrieving it with their Access token: ...

1 2 3 4 5 14