0
A
回答
1
示例捲曲請求格式可以列出如下。
curl -k -d "grant_type=refresh_token&refresh_token=<refreshtoken>&scope=PRODUCTION" -H "Authorization: Basic <Base64 encoded consumer secret and key seperated by semicolan>, Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token
更多信息可以下找到續訂訪問令牌的文檔部分。
1
樣品捲曲請求應該是如下
curl -k -d "grant_type=refresh_token&refresh_token=refreshtoken>&scope=PRODUCTION" -H "Authorization: Basic "<Base64 encoded consumer secret and key seperated by semicolan>" -H "Content-Type: application/x-www-form-urlencoded" https://localhost:8243/token
相關問題
- 1. WSO2 API管理器Outh令牌驗證
- 2. wso2 api管理器1.10無法重新生成令牌
- 3. wso2令牌請求失敗,因爲@ carbon.super
- 4. 請求刷新令牌失敗。令牌存儲中未找到刷新令牌
- 5. 請求具有過期刷新令牌的訪問令牌
- 6. OAuth 2請求新的訪問令牌使用刷新令牌?
- 7. WSO2 API管理器培訓
- 8. Microsoft Graph API處理oAuth2.0刷新令牌
- 9. 刷新令牌時Spotify Web API錯誤請求錯誤「invalid_client」
- 10. WSO2 API管理器API Visiblity
- 11. WSO2 API管理器API WSDL
- 12. WSO2 API管理器的API
- 13. iOS使用刷新的身份驗證令牌處理請求
- 14. 如何使用Android帳戶管理器處理刷新令牌
- 15. WSO2 API管理器2.0.0 - LDAP和發佈服務器API令牌問題
- 16. Google API刷新令牌
- 17. LinkedIn API OAuth刷新令牌
- 18. Google OAuth2 API刷新令牌
- 19. Outlook API v2.0刷新令牌?
- 20. 谷歌API刷新令牌
- 21. Google API - 刷新令牌
- 22. Google API刷新令牌CURL
- 23. 如何在wso2 api管理器中編寫發佈請求?
- 24. WSO2 API管理器配置
- 25. wso2 api管理器新節流層
- 26. WSO2 API管理器 - 上下文管理
- 27. API管理的Wso2 API編排要求
- 28. WSO2 APi管理器響應代碼0
- 29. WSO2 api管理器和SSO
- 30. WSO2 API管理器混搭
我想從我的C#.net應用程序更新憑證。有人可以請我提供我的代碼中配置的確切配置參數。我不知道如何在我的C#.NET代碼中配置這個curl url。 – munna