隐藏获取请求密钥

时间:2017-05-20 19:20:03

标签: javascript node.js api reactjs

我正在使用新的OMDB api,并希望在客户端保持获取请求(包括密钥)的可见性。

以下是用户打开开发工具时问题的示例:feelsbad

我在React中做的所有电话都是这样的:

  import OmdbKey from './OmdbKey';
  populate(keystrokes) {
    let query = "http://www.omdbapi.com/?s=";
    fetch(query + keystrokes + '&apikey=' + OmdbKey )
      .then((response) => {
        response.json().then((json) => {
          this.setState({ results: json.Search });
        });
      });
  }

有没有办法这样做,所以我可以隐藏GET请求中的密钥?如果不是,我该怎么办呢?

由于

0 个答案:

没有答案