parse-community / Parse-SDK-iOS-OSX

The Apple SDK for Parse Platform (iOS, macOS, watchOS, tvOS)
https://parseplatform.org
Other
2.81k stars 864 forks source link

File upload by public is disabled #1652

Closed chinabrant closed 2 years ago

chinabrant commented 2 years ago
 do {
             article.audio = (try? PFFileObject(name: "test.mp3", contentsAtPath: audioLocalPath))!
} catch let _ {

}

article.saveInBackground { isSuccess, error in
      if let err = error {
          print("Failed: \(err)")
      } else {
          print("successed")
       }
 }

Error: [Error]: File upload by public is disabled. (Code: 130, Version: 1.19.3) Failed: Error Domain=Parse Code=130 "File upload by public is disabled." UserInfo={code=130, temporary=0, error=File upload by public is disabled., NSLocalizedDescription=File upload by public is disabled.}

How can i fix this? Thanks.

parse-github-assistant[bot] commented 2 years ago

Thanks for opening this issue!

mtrezza commented 2 years ago

I'm closing this as it does not seem to be a Parse ObjC SDK issue.