Basic authentication
Last updated
Was this helpful?
Last updated
Was this helpful?
The steps to encode an application’s consumer dappid and dappkey into a set of credentials to obtain a Bearer Token are:
URL encode the consumer key and consumer secret according to . Note that at the time of writing, this will not actually change the consumer key and secret, but this step should still be performed in case the format of those values changes in the future.
Concatenate the encoded consumer key, a colon character ":", and the encoded consumer secret into a single string.
the string from the previous step.