【发布时间】:2019-12-06 09:57:16
【问题描述】:
我想使用 url 生成 salesforce 令牌
https://test.salesforce.com/services/oauth2/token 和参数,我用邮递员试过了,很好。
但是当我在逻辑应用 HTTP 中使用相同的参数时,它会抛出错误 invalid grant type
在邮递员中一切顺利 -
【问题讨论】:
标签: azure oauth-2.0 salesforce azure-logic-apps
我想使用 url 生成 salesforce 令牌
https://test.salesforce.com/services/oauth2/token 和参数,我用邮递员试过了,很好。
但是当我在逻辑应用 HTTP 中使用相同的参数时,它会抛出错误 invalid grant type
在邮递员中一切顺利 -
【问题讨论】:
标签: azure oauth-2.0 salesforce azure-logic-apps
在邮递员中,您的内容类型是原始的,在 azure 中是 urlencoded 用它做实验。当您使用原始文件时,您的用户名的“@”符号将作为“@”发送或手动编码为 %40? 如果从 Azure 应用中删除 urlencoded 标头会怎样?
【讨论】: