以下是我的index.js设置:
var express = require('express'); // find this line in the file
var cors = require('cors') // add this line below it
var ParseServer = require('parse-server').ParseServer;
var path = require('path');
var databaseUri = process.env.DATABASE_URI || process.env.MONGODB_URI ;
if (!databaseUri) {
console.log('DATABASE_URI not specified, falling back to localhost.');
}
var api = new ParseServer({
databaseURI: databaseUri || 'mongodb://heroku_vpgrmmf2:xxx@xxx.mlab.com:53735/heroku_vpgrmmf2',
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
appId: process.env.APP_ID || '',
masterKey: process.env.MASTER_KEY || '',
serverURL: process.env.SERVER_URL || 'https://myapp.herokuapp.com/parse',
clientKey: process.env.CLIENT_KEY || '',
javascriptKey: process.env.JAVASCRIPT_KEY || '',
liveQuery: {
classNames: ["Posts", "Comments"] // List of classes to support for query subscriptions
}
});
var app = express();
app.use(cors());
显然填写了与Heroku服务器相同的凭据。我已经在this页面上对其进行了测试,它似乎正在运行:我收到以下消息
但是,当我使用此设置为app delegate运行我的swift应用程序时:
func application(_ application:UIApplication,didFinishLaunchingWithOptions launchOptions:[UIApplicationLaunchOptionsKey:Any]?) - >布尔{ Parse.enableLocalDatastore() let configuration = ParseClientConfiguration(block:{(ParseMutableClientConfiguration) - > Void in ParseMutableClientConfiguration.applicationId =“” ParseMutableClientConfiguration.clientKey =“” ParseMutableClientConfiguration.server =“https://myapp.herokuapp.com/parse” })
// Swift 3.0
Parse.initialize(with: configuration)
Parse.setApplicationId("", clientKey: "")
PFFacebookUtils.initializeFacebook(applicationLaunchOptions: launchOptions)
PFUser.enableAutomaticUser()
let defaultACL = PFACL();
defaultACL.getPublicReadAccess = true
PFACL.setDefault(defaultACL, withAccessForCurrentUser: true)
if application.applicationState != UIApplicationState.background {
let preBackgroundPush = !application.responds(to: #selector(getter: UIApplication.backgroundRefreshStatus))
let oldPushHandlerOnly = !self.responds(to: #selector(UIApplicationDelegate.application(_:didReceiveRemoteNotification:fetchCompletionHandler:)))
var noPushPayload = false;
if let options = launchOptions {
noPushPayload = options[UIApplicationLaunchOptionsKey.remoteNotification] != nil;
}
if (preBackgroundPush || oldPushHandlerOnly || noPushPayload) {
PFAnalytics.trackAppOpened(launchOptions: launchOptions)
}
}
return FBSDKApplicationDelegate.sharedInstance().application(application, didFinishLaunchingWithOptions: launchOptions)}
(显然也填充了正确的凭据)。它似乎没有连接到服务器,因为我收到此错误:
我一直想弄清楚过去一周我做错了什么,但我无法做到。有没有人知道我可能做错了什么? 提前谢谢。
编辑:另外,这是我添加到info.plist文件中的代码:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>myapp.herokuapp.com/parse</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSExceptionMinimumTLSVersion</key>
<string>TLSv1.2</string>
<key>NSExceptionRequiresForwardSecrecy</key>
<true/>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSRequiresCertificateTransparency</key>
<string></string>
<key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
<false/>
<key>NSThirdPartyExceptionMinimumTLSVersion</key>
<false/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<true/>
</dict>
</dict>
</dict>
答案 0 :(得分:0)
我最终弄清楚了:我必须从appDelegate中删除这一行:
Parse.setApplicationId("myappid", clientKey: "myclientkey")
现在它有效,不知道为什么,但我很高兴。