在我的应用程序中,我使用eloqua OAuth 2.0方法进行身份验证。我能够建立连接,并成功地以以下格式获取了access_token和refresh_token:
{ "access_token":"2YotnFZFEjr1zCsicMWpAA",“token_type”:“承载”,"expires_in":3600,"refresh_token":"tGzv3JOkF0XG5Qx2TlKWIA“}
我正在尝试理解如何使用我收到的访问令牌进行Eloqua rest api调用的后续步骤?
发布于 2016-08-19 10:00:29
以下是Eloqua的oauth文档:http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#Developers/GettingStarted/Authentication/authenticate-using-oauth.htm
将以下头部添加到您的请求中:
Authorization: Bearer 2YotnFZFEjr1zCsicMWpAAhttps://stackoverflow.com/questions/39021533
复制相似问题