I'm writing some code to hit the Pastebin API and keep getting this issue:
Bad API request, use POST request, not GET
I've tried a whole bunch of things and can't get it working. When I use cURL things work fine, but in my Swift app the call fails.
    func postPasteRequest(urlEscapedContent: String, callback: @escaping (String) -> ()) {
        var request = URLRequest(url: URL(string: "http://pastebin.com/api/api_post.php")!)
        request.httpMethod = "POST"
        let postString = "api_paste_code=\(urlEscapedContent)&api_dev_key=\(API_KEY)&api_option=paste&api_paste_private=1&api_paste_expire_date=N"
        request.httpBody = postString.data(using: .utf8)
        let task = URLSession.shared.dataTask(with: request) { data, response, error in
            guard let data = data, error == nil
                // check for fundamental networking error
                else {
                    NSLog("error=\(String(describing: error))")
                    return
            }
            
            if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 {           // check for http errors
                NSLog("statusCode should be 200, but is \(httpStatus.statusCode)")
                NSLog("response = \(String(describing: response))")
            }
            
            let responseString = String(data: data, encoding: .utf8)
...
    }
task.resume()
}
 
                        
Add
task.resume()after the closing curly braces of dataTask method. btw, the pastebin has a pretty detailed method in Swift, on how to get data.here, you can find a call to that API in swift.