如何验证nexmo语音客户端?

问题描述

我正在尝试使用 Nexmo (Vonage) API 进行出站呼叫。要访问 API,我需要使用应用程序 ID 和私钥(作为 .key 文件提供给我)对我的客户端进行身份验证。

应用程序 ID 被指定为字符串,私钥被指定为路径。

client = nexmo.Client(application_id = 'xxxxxx-xxxxxxx',private_key = "C:\\path\\to\\folder\\private.key")

我收到以下错误

  File "test_bot.py",line 30,in <module>
    'ncco': ncco
  File "C:\Users\vishn\AppData\Local\Programs\Python\python37-32\lib\site-packages\wrapt\wrappers.py",line 606,in __call__
    args,kwargs)
  File "C:\Users\vishn\AppData\Local\Programs\Python\python37-32\lib\site-packages\deprecated\classic.py",line 285,in wrapper_function
    return wrapped_(*args_,**kwargs_)
  File "C:\Users\vishn\AppData\Local\Programs\Python\python37-32\lib\site-packages\nexmo\__init__.py",line 427,in create_call
    return self._jwt_signed_post("/v1/calls",params or kwargs)
  File "C:\Users\vishn\AppData\Local\Programs\Python\python37-32\lib\site-packages\nexmo\__init__.py",line 719,in _jwt_signed_post
    self.api_host(),self.session.post(uri,json=params,headers=self._headers())
  File "C:\Users\vishn\AppData\Local\Programs\Python\python37-32\lib\site-packages\nexmo\__init__.py",line 742,in _headers
    return dict(self.headers,Authorization=b"Bearer " + token)
TypeError: can't concat str to bytes

解决方法

来自 Vonage 的戴安娜在这里。

修复已经在路上了。但是我注意到这只发生在 pyjwt 2.0 中。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...