如何从api响应中获取令牌(react-native)

时间:2018-07-23 07:25:02

标签: android react-native token text-to-speech azure-cognitive-services

我想通过react-native调用文本的其余API来监听服务。当我想获得服务的令牌时,我不知道需要使用响应的哪一部分。

这是回复详细信息: enter image description here

此外,文本对语音API的响应格式是什么?我想将音频保存为react-native,但对此一无所知。

1 个答案:

答案 0 :(得分:0)

我们发现react-native的fetch函数不能直接返回API响应主体。因此,工作流程如下:

  

fetch('https://westus.api.cognitive.microsoft.com/sts/v1.0/issueToken',{               方法:“ POST”,               标头:{                   “ Ocp-Apim-Subscription-Key”:subscriptionKey,                   'Content-Length':'0',                   “内容类型”:“ application / x-www-form-urlencoded”               }           })。then((response)=> {               返回response.text();           })               .then((response)=> {               让测试=响应;           })