PDFViewでRNFSを使用してPDFを表示しています。
JWT認証を使用しているWebサイトからpdfファイルをダウンロードしようとしていますが、リクエストは進行中ですが、認証の問題があり、403応答が返されます。
私は次のようにやっています、
var pdfPath=this.pdfPath;
alert(pdfDownloadURL)
var DownloadFileOptions={
fromUrl: pdfDownloadURL, // URL to download file from
toFile: pdfPath, // Local filesystem path to save the file to
headers: {'Authorization' : DEMO_TOKEN} // An object of headers to be passed to the server
}
RNFS.downloadFile(DownloadFileOptions).then(res => {
alert(res)
this.setState({isPdfDownload: true});
}).catch(err => {
alert(err);
this.props.navigator.pop
});
解決策を見つけるのを手伝ってください。前もって感謝します。