私は単純なスポットアプリケーションを構築することで角度2を学ぼうとしています。Pre Flight Issueヘッダーが設定されているときに角度2を設定します
しかし、どういうわけか私は認証プロセスに悩まされています。
私の問題は、私はhttps://accounts.spotify.com/api/token
let tokenUrl = 'https://accounts.spotify.com/api/token'; let keyEncrypted = btoa(this.client_id + ':' + this.client_secret); let authHeaders = new Headers(); authHeaders.append('Content-Type', 'application/x-www-form-urlencoded'); authHeaders.append('Authentication', 'Basic ' + keyEncrypted); let options = new RequestOptions({headers: authHeaders}); let body = 'code=' + authCode + '&grant_type=authorization_code' + '&redirect_uri=' + this.redirect_uri; let jsonString = JSON.stringify({ code: authCode, grant_type: 'authorization_code', redirect_uri: this.redirect_uri }) return this._http .post( tokenUrl, jsonString, options ).map(res => { res.json(); })
私は、アクセス制御チェックを通過しないプリフライトリクエストのプリフライト "レスポンスを得るに設定ヘッダでのHTTP POSTを送信しようとすると:いいえ"アクセス制御 - 許可 - 起源... "
しかし、私は次のようにリターンからヘッダを削除すると
return this._http .post( tokenUrl, jsonString // Header removed ).map(res => { res.json(); })
飛行前のチェックはバイパスされたようですが、メディアタイプにエラーが発生しません。
1.ポストw/oヘッダーの送信は、飛行前チェックをバイパスし、ポストw /ヘッダーを送信するのはなぜですか? 2.ヘッダーが設定されていて設定されていない場合、角度http postは異なるタイプの要求を送信しますか?
多くのありがとうございます。
だろう -
はChromeを使って安全でないモードで起動してみ? spotifyのようなサービスでは、リクエストが来る場所のドメインと開発モードの間に「localhost」を使うことができます。 –