如何通过 jwt 将 box api 与 salesforce 集成
How to integrate box api with salesforce via jwt
我想通过 api 而不是默认包将 salesforce 与 box 集成。
回答了我自己的问题,因为发现所有部分需要一段时间,可能对其他人有用。
- 将 https://github.com/box/box-salesforce-sdk 作为非托管包安装在沙盒上。
- 使用 BoxPlatformApiConnection class 进行身份验证,不要尝试在 apex 中构建自己的令牌。
- 如果您需要在 C# 生成的密钥 (RSACryptoServiceProvider) 和 openssl .pem 格式之间快速切换,请使用 https://superdry.apphb.com/tools/online-rsa-key-converter。
我想通过 api 而不是默认包将 salesforce 与 box 集成。
回答了我自己的问题,因为发现所有部分需要一段时间,可能对其他人有用。
- 将 https://github.com/box/box-salesforce-sdk 作为非托管包安装在沙盒上。
- 使用 BoxPlatformApiConnection class 进行身份验证,不要尝试在 apex 中构建自己的令牌。
- 如果您需要在 C# 生成的密钥 (RSACryptoServiceProvider) 和 openssl .pem 格式之间快速切换,请使用 https://superdry.apphb.com/tools/online-rsa-key-converter。