Realm

View as MarkdownOpen in Claude

The realm is a required oauth parameter. The realm will only ever be one of two values.

If you are using the “TESTCONS” consumer key during your paper testing, you will need to use “test_realm”

1# Oauth realm param omitted from signature, added to header afterward.
2oauth_params["realm"] = "test_realm"

Once you are using your own consumer key, you must use “limited_poa”.

1# Oauth realm param omitted from signature, added to header afterward.
2oauth_params["realm"] = "limited_poa"