Merge branch 'master' of https://github.com/Ranchero-Software/NetNewsWire
This commit is contained in:
commit
a0b4237c3c
@ -36,8 +36,12 @@ public extension URLRequest {
|
|||||||
case .readerBasic:
|
case .readerBasic:
|
||||||
setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
|
setValue("application/x-www-form-urlencoded", forHTTPHeaderField: "Content-Type")
|
||||||
httpMethod = "POST"
|
httpMethod = "POST"
|
||||||
let postData = "Email=\(credentials.username)&Passwd=\(credentials.secret)"
|
var postData = URLComponents()
|
||||||
httpBody = postData.data(using: String.Encoding.utf8)
|
postData.queryItems = [
|
||||||
|
URLQueryItem(name: "Email", value: credentials.username),
|
||||||
|
URLQueryItem(name: "Passwd", value: credentials.secret)
|
||||||
|
]
|
||||||
|
httpBody = postData.percentEncodedQuery?.data(using: .utf8)
|
||||||
case .readerAPIKey:
|
case .readerAPIKey:
|
||||||
let auth = "GoogleLogin auth=\(credentials.secret)"
|
let auth = "GoogleLogin auth=\(credentials.secret)"
|
||||||
setValue(auth, forHTTPHeaderField: HTTPRequestHeader.authorization)
|
setValue(auth, forHTTPHeaderField: HTTPRequestHeader.authorization)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user