web-dev-qa-db-ja.com

GithubでのAxios CORSの問題oauthアクセストークンを取得できません

React-Reduxアプリで2つのルートを作成しました。ホームページとコールバックURLを備えたgithubアプリケーションの設定を既に追加しました。

1.このルートにアクセスしたとき: https://reduxapp.herokuapp.com/signin Githubログインボタンをクリックすると、==>githubGeturi

2. Githubはコードでリダイレクトします https://reduxapp.herokuapp.com/auth/callback?code=9536286a59228e7784a1 andgithubSendCode( '9536286a59228e7784a1')アクションがトリガーされます

ネットワークコールでOPTIONSコールが通過することを確認できますが、POSTコールは発生しません。コンソールエラーが表示されます。

XMLHttpRequest cannot load https://github.com/login/oauth/access_token?client_id=32b70bf671e04762b26c&…_secret=123456789123456789123456789&code=9536286a59228e7784a1. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://reduxapp.herokuapp.com' is therefore not allowed access.

以下が私のアクション関数です:

const CLIENT_ID = '32b70bf671e04762b26c';
const CLIENT_SECRET = '123456789123456789123456789';
const ROOT_URL = window.location.Origin;
const REDIRECT_URL = `${ROOT_URL}/auth/callback`;
const AUTHORIZE_URL = 'https://github.com/login/oauth/authorize';
const ACCESS_TOKEN_URL = 'https://github.com/login/oauth/access_token';
const STATE = _.random(10000);

export function githubGeturi() {
  const GITHUB_URL = `${AUTHORIZE_URL}?client_id=${CLIENT_ID}&scope=user,public_repo&redirect_uri=${REDIRECT_URL}`;

  return (dispatch) => dispatch(signinUrl(GITHUB_URL));
}

export function githubSendCode(code) {
  const GITHUB_URL = `${ACCESS_TOKEN_URL}?client_id=${CLIENT_ID}&client_secret=${CLIENT_SECRET}&code=${code}`;

  axios.defaults.headers.post['Access-Control-Allow-Origin'] = '*';
  const axiosPost = axios.post(
    GITHUB_URL,
    {
    headers: {
      'Content-Type': 'application/x-www-form-urlencoded',
      'Accept': 'text/json'
    }
  });

  return (dispatch) => {
    dispatch(signinRequest());
    return axiosPost
      .then(
        success => dispatch(signinSuccess(success)),
        error => dispatch(signinError(error))
      );
  };
}

========私が見つけた唯一の可能な方法は、make POSTサーバーで呼び出します。ここでソリューション全体を見ることができます: https://github.com/ steelx/ReduxWeatherApp/commit/6215634ca543a4760ea96397fe31b61f22184d91

21
STEEL

JavaScriptを介してそのエンドポイントを呼び出すことはできないようです

https://github.com/isaacs/github/issues/3

あなたの例では、OPTIONSメソッドの呼び出しが失敗することがわかります。これは、リクエストに余分なヘッダーを追加するとaxiosがそれを行うが、POST呼び出しも失敗するためです。

アプリケーションとサーバー上のgithubの間にプロキシをセットアップして、リクエストを転送し、応答で応答するだけです。

6
Burimi