eloqua Oauth 2.0提交表单

在我的应用程序中,我使用eloqua OAuth 2.0方法进行身份验证。 我能够建立连接,并以下面的格式成功获取access_token和refresh_token:

{“access_token”:“2YotnFZFEjr1zCsicMWpAA”,“token_type”:“承载”,“expires_in”:3600,“refresh_token”:“tGzv3JOkF0XG5Qx2TlKWIA”}

我正试图了解如何使用我收到的访问令牌让Eloqua休息api的下一步操作?


以下是Eloqua的oauth文档:http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#Developers/GettingStarted/Authentication/authenticate-using-oauth.htm

将以下标题添加到您的请求中:

Authorization: Bearer 2YotnFZFEjr1zCsicMWpAA
链接地址: http://www.djcxy.com/p/48035.html

上一篇: eloqua Oauth 2.0 submit forms

下一篇: Do OAuth access tokens contain roles like JWT tokens