我正在建立反应原生移动应用程序和后端服务我正在使用解析服务,因为很多人都知道Parse服务在2017年关闭,我已将我的数据迁移到mlab(mongo db)。我正在使用Heroku作为应用程序平台。
现在,当我从我的app或rest api工具发出rest api请求时,即Postman然后我不断得到:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
html, body, iframe { margin: 0; padding: 0; height: 100%; }
iframe { display: block; width: 100%; border: none; }
</style>
<title>Application Error</title>
</head>
<body>
<iframe src="//s3.amazonaws.com/heroku_pages/error.html">
<p>Application Error</p>
</iframe>
</body>
</html>
这是我的标题请求:
标题:X-Parse-Application-Id:xxxxxxxxxxxxxxxxxxx
http://xxxx.herokuapp.com/parse/classes/Message/KwSKveyh9C
我做错了什么?