使用springboot + oauth2 + security 整合了一把,結果獲取access_token這一步就攔住了spring
我主要是試了試 grant_type password的狀況springboot
請求地址是 /oauth/token服務器
請求的form裏面是spa
grant_type 受權類型 這個不少還有其餘類型這裏採用 passwordorm
username 用戶名token
password 密碼it
scope 可選的io
最大的坑就是Authorization這個頭,大部分都有大概提到確不多說起這個頭如何弄得,怎麼產生base64
其實就是服務器端配置的form
client-id
client-secret
這兩個關鍵的東西算出來的 Authorization = Basic + space + base64(client-id:client-secret)