Merge pull request #1905 from Wevah/post-body-fix

Make sure POST body is properly URL-encoded
This commit is contained in:
Maurice Parker 2020-03-14 02:47:52 -05:00 committed by GitHub
commit d01fa0428a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -36,8 +36,12 @@ public extension URLRequest {
case .readerBasic:
setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
httpMethod = "POST"
let postData = "Email=\(credentials.username)&Passwd=\(credentials.secret)"
httpBody = postData.data(using: String.Encoding.utf8)
var postData = URLComponents()
postData.queryItems = [
URLQueryItem(name: "Email", value: credentials.username),
URLQueryItem(name: "Passwd", value: credentials.secret)
]
httpBody = postData.percentEncodedQuery?.data(using: .utf8)
case .readerAPIKey:
let auth = "GoogleLogin auth=\(credentials.secret)"
setValue(auth, forHTTPHeaderField: HTTPRequestHeader.authorization)