This repository was archived by the owner on Jan 23, 2024. It is now read-only.

Description
In the library Coinbase OAuth, line 38 needs an & to correctly create links.
params = urllib.parse.urlencode(params) + 'scope=' + '+'.join(scope)
changed to
params = urllib.parse.urlencode(params) + '&scope=' + '+'.join(scope)
otherwise the site throws an error saying the redirect_uri is invalid