Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When making an http post:

https://graph.facebook.com/oauth/device?type=device_code&client_id=myclientid

I'm getting an http 400 error. Am I doing something wrong here? Is device_code supposed be something other than device_code? It doesn't look that way here:

https://developers.facebook.com/docs/authentication/devices/

I'm just starting to experment with browserless facebook auth.

share|improve this question

1 Answer

Well, clicking https://graph.facebook.com/oauth/device?type=device_code&client_id=myclientid gets you a pretty clear error message:

{
   "error": {
      "message": "Unsupported type: 'device_code'. Supported types: web_server, user_agent, client_cred, username",
      "type": "OAuthException",
      "code": 1
   }
}

The linked specification though says:

type
         REQUIRED.  The parameter value MUST be set to "device_code".

As Facebook is stating:

Both the specification and our implementation are constantly being refined, however, so some subtle differences should be expected.

that could be some temporary glitch between implementation and documentation.

Anyway, are you sure you already would have access to device authentication?

Please note that we are currently testing Device Authentication with a limited number of partners. It is not currently available for general use, and we are not accepting additional applications for access.

share|improve this answer
1  
This is probably due to the note at the top of the docs explaining that it's not publicly available – Igy Jul 7 '12 at 8:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.