Salesforce cometD:401::Request 需要身份验证

Salesforce cometD: 401::Request requires authentication

我必须订阅 cometD Salesforce 频道,因此在 python 中构建 cometD 客户端。我正在使用下面的 python 库。

https://github.com/dkmadigan/python-bayeux-client

下面是我收到的握手响应

{'Host': ['xxxxx.my.salesforce.com/cometd/42.0/'], 'Content-Type': ['application/x-www-form-urlencoded'], 'Authorization': ['admin@123Pi6s9Y2QVergfergregpqqY']} message={"channel":"/meta/handshake","id":"1",
            "supportedConnectionTypes":["callback-polling", "long-polling"],
            "version":"1.0","minimumVersion":"1.0"} Headers({'host': ['xxxxx.my.salesforce.com/cometd/42.0/'], 'content-type': ['application/x-www-form-urlencoded'], 'authorization': ['admin@123Pi6s9Y2QVergfergregpqqY']}) {u'successful': False, u'advice': {u'reconnect': u'none'}, u'ext': {u'replay': True, u'sfdc': {u'failureReason': u'401::Request requires authentication'}, u'payload.format': True}, u'error': u'403::Handshake denied', u'id': u'1', u'channel': u'/meta/handshake'}

我收到 401::Request 需要身份验证。

在授权密钥中,我连接了密码和访问令牌,即 admin@123Pi6s9Y2QVergfergregpqqY,其中 admin@123 是我用来登录 Salesforce 的密码。

两天以来我一直在敲我的头,但无法弄清楚为什么握手失败。有什么建议么?

我认为授权密钥不正确。预期的不是您的密码,而是您登录 salesforce 后收到的 OAuth 访问令牌或会话 ID。看到不同的OAuth flows,如果你正在测试你可以使用用户名密码流程。

您可以使用以下方法在需要时获取会话 ID

import requests
import json

LOGIN_INSTANCE_URL = 'https://test.salesforce.com/services/oauth2/token'
LOGIN_USER_NAME = 'username_here'
CLIENT_ID = 'connected app consumer key'
CLIENT_SECRET = 'connected app consumer secret'
PASSWORD = 'password token'

def connect(authUrl, clientId, secret, username, password):
    headers = {
            }        
    postBody = { 
                'grant_type': 'password',
                'client_id': clientId,
                'client_secret':secret,
                'username': username,
                'password': password
            }
    try:
        response = requests.post(authUrl, data = postBody, headers = headers)
        #response.raise_for_status()
        if (response.status_code == 200):
            authResponse = response.json()
            return authResponse['access_token']
        else: #if not 200 see what the problem was
            print response.text  
    except requests.exceptions.RequestException as e:  
        print e

print(connect(LOGIN_INSTANCE_URL, CLIENT_ID, CLIENT_SECRET, LOGIN_USER_NAME, PASSWORD))

这只是应该工作的示例代码,但您需要先创建一个 connected app。对于没有用户干预的独立应用程序,JWT 流程更好。