我正在尝试通过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本身?
谢谢。