OAuth Echo Service Provider Demo

This is a test OAuth service provider with pre-defined keys and secrets and no user authentication step.

Service settings

Request Token URL
http://echo.lab.madgex.com/request-token.ashx
Authorization URL
not required
Access Token URL
http://echo.lab.madgex.com/access-token.ashx
HTTP Methods supported
GET and POST
Is Authorization header supported?
yes
Realm
"" (empty)
Signature Methods supported
HMAC-SHA1
OAuth Versions supported
1.0

Consumer details

Key
key
Secret
secret

Getting a request token

A successful request will return the following token:

Token
requestkey
Secret
requestsecret

An unsuccessful request will describe the error using the Problem Reporting extension.

For example: http://echo.lab.madgex.com/request-token.ashx?oauth_consumer_key=key&oauth_nonce=55edf7a7-7842-4fec-9acb-453fb53b7e43&oauth_signature=xP4ZyQMQXuyXgse1LP8IB2m1qhA=&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1269057933&oauth_version=1.0

Getting an access token

A successful request will return the following token:

Token
accesskey
Secret
accesssecret

An unsuccessful request will describe the error using the Problem Reporting extension.

For example: http://echo.lab.madgex.com/access-token.ashx?oauth_consumer_key=key&oauth_nonce=fa2d6f2c-724e-4000-b949-6e3a24a580d2&oauth_signature=fjxI7bc8J1UMxkQ8uUecCTFQYw4=&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1269057933&oauth_token=requestkey&oauth_version=1.0

Calling the Echo API

Echo API URL
http://echo.lab.madgex.com/echo.ashx

A successful request will echo the non-OAuth parameters.

An unsuccessful request will describe the error using the Problem Reporting extension.

For example: http://echo.lab.madgex.com/echo.ashx?oauth_consumer_key=key&oauth_nonce=e027e5c1-2330-4830-977b-1392a4c4e568&oauth_signature=LtaZ4sLpEki+G1CORjK+FgFxrac=&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1269057933&oauth_token=accesskey&oauth_version=1.0&method=foo bar&bar=baz should echo: method=foo bar&bar=baz