1、Dribbble Application注册
https://dribbble.com/account/applications/new
注册中Website URL和Callback URL的url我都填的我的简书主页的网址
然后会获得client id和client secret
2、访问下列网址,替换的地方已标注
https://dribbble.com/oauth/authorize?client_id=这里填你的client id&redirect_uri=这里填你的callback url& scope=public+upload

image.png
然后点击authorize按钮,会跳转到你填的callback_url 3、

image.png
可以看到所跳转的网址后面接的code,把这个code记下来以获取access token
4、获取access token
因为是发送post请求,所以这里我在linux环境下用curl的方式发送post请求
curl -d "client_id=你的client id&client_secret=你的client_secret&code=上一步里获取的code&redirect_uri=你的回调url" https://dribbble.com/oauth/token