[错误]:AWS中不支持的URL

时间:2016-06-19 05:49:33

标签: ios swift amazon-web-services parse-platform

我刚刚将我的解析应用程序导出到AWS和mLab,但是当我访问服务器网站时,我得到了这个

enter image description here

我遵循了本指南https://www.appcoda.com/parse-server-installation/。 mLab和AWS上的所有信息都是从解析中复制和粘贴的。当我配置ios应用程序并尝试登录我的应用程序时,我收到此错误[Error]: unsupported URL (Code: 100, Version: 1.12.0)

let config = ParseClientConfiguration(block: {
        (ParseMutableClientConfiguration) -> Void in
        ParseMutableClientConfiguration.applicationId = "xxxxx";
        ParseMutableClientConfiguration.clientKey = "xxxxx";
        ParseMutableClientConfiguration.server = "xxxxx.com/parse/";
    });
Parse.initializeWithConfiguration(config);

1 个答案:

答案 0 :(得分:0)

如果您尝试http://localhost:1337或在您的案例xxxxx.com中运行解析服务器,您应该会收到一条欢迎消息。如果您尝试http://localhost:1337/parse或xxxx.com/parse,则会收到error: unauthorized消息。

关于您的其他错误,您的服务器网址在parse之后不应该有反斜杠,即您的网址应为xxxxx.com/parse