Javascript Preview SDK
を使用して、Webアプリケーションからボックスアカウントのすべてのファイルを読み取ろうとしています。カスタムWebアプリケーションからボックスアカウントのすべてのファイルのプレビューを見たいと思います。ボックスアカウントのすべてのフォルダとファイルを読み取るためのデフォルトのID
を使用する方法がいくつかあります。BOX API、Box javascript preview SDKを使用してボックスアカウントのすべてのファイルを読み取る
現在、私が使用しようとしている:
Box.Preview.show('FILE_ID',{
token: access_token,
container: '.preview-container',
showDownload: true
});
access_token
はthisページで説明した手順によって得られます。私はJavascript Preview SDK
を使用して要求ヘッダーを設定するにはどうすればよい
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin ' http://localhost:3000 ' is therefore not allowed access. The response had HTTP status code 404. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
:以外にも、私はこのエラーを取得し、上記のコードを使用していますか? ありがとうございます。
私はそれを追加したにもかかわらずこの問題を抱えています。 –