In order to obtain an access_token from Facebook, you have to transmit your app_id, the code you receive after the authorize request, and your app's secret_key.

Why would I EVER transmit my secret key? This seems blatantly insecure. Is this a requirement of the OAuth 2.0 spec?

As a related question, why would I need to transmit an app_id when my request is already signed with my consumer_key?

I've got a working app, I just don't understand these requirements.

link|improve this question

50% accept rate
1  
There is no requirement in the OAuth 2.0 spec to send the secret key when requesting access token. – Mark S. Sep 12 '11 at 16:55
feedback

1 Answer

This is a requirement of the OAuth 2.0 spec, section 4.1.3.

If the client type is confidential or was issued client credentials (or assigned other authentication requirements), the client MUST authenticate with the authorization server as described in Section 3.2.1

And section 3.2.1 refers to section 2.3. Specifically, section 2.3.1 says:

Alternatively, the authorization server MAY allow including the client credentials in the request body using the following parameters:

client_id

   REQUIRED.  The client identifier issued to the client during
   the registration process described by Section 2.2.

client_secret

   REQUIRED.  The client secret.  The client MAY omit the
   parameter if the client secret is an empty string.

There are indeed other ways OAuth 2.0 offers but by choosing this approach, Facebook is well within the spec. Now why Facebook opted for this approach, only Facebook can probably answer.

link|improve this answer
Is client_secret supposed to be different than the consumer_secret? I don't understand what client_id and client_secret supplies beyond what the consumer_key and consumer_secret provides. – Andy Edinborough Sep 14 '11 at 21:25
2  
The client is the consumer. As such, the client_secret is what Facebook calls the App Secret. The client_id is what Facebook calls the App ID/API key. Your request is not signed with your key in the process. The parameters are used to authenticate your app when you request the token. – kongo09 Sep 15 '11 at 16:10
feedback

Your Answer

 
or
required, but never shown

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