React Native WebView-如何将标头中的JWT令牌发送到WordPress网站

时间:2020-07-27 09:41:57

标签: react-native jwt wordpress-rest-api react-native-webview

我正在尝试通过React Native WebView的标头发送JWT令牌

注意:***令牌是从WordPress Rest API获得的 (https://mywordpress.com/wp-json/jwt-auth/v1/token)。

<WebView
     source={{ 
     uri: this.props.link,
     headers: { Authorization: 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUz...'},
     }}  
     style={{resizeMode: 'cover', flex: 1}}
/>

似乎不起作用!

我是否错过了某些wordpress配置,或者可能是React Native本身?

谢谢。

0 个答案:

没有答案