2017-05-13 11 views
0

Express.jsの外部API(GraphQL)に接続する際に問題があります。これについていくつかの良いチュートリアルを私にくれますか?Express.js - GraphQL外部APIと接続

もう1つ質問があります。それは、このAPIに接続することが可能です

Link to error message - img

:私はこのエラーがありますか?/ExpressのアプリあなたのNodeJSに次のミドルウェアを追加

+0

サーバは、発信者のIPアドレスをホワイトリストに登録する必要があります。 'CORS'を調べる – aeid

答えて

0

てみてください(私はあなたの便宜のためにいくつかのコメントが追加されました):

// Add headers 
app.use(function (req, res, next) { 

    // Website you wish to allow to connect 
    res.setHeader('Access-Control-Allow-Origin', 'http://localhost:8888'); 

    // Request methods you wish to allow 
    res.setHeader('Access-Control-Allow-Methods', 'GET, POST, OPTIONS, PUT, PATCH, DELETE'); 

    // Request headers you wish to allow 
    res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type'); 

    // Set to true if you need the website to include cookies in the requests sent 
    // to the API (e.g. in case you use sessions) 
    res.setHeader('Access-Control-Allow-Credentials', true); 

    // Pass to next layer of middleware 
    next(); 
}); 

希望に役立ちます!

関連する問題