36 lines
1.4 KiB
Swift
36 lines
1.4 KiB
Swift
//
|
|
// OAuthAuthorizationClient+NetNewsWire.swift
|
|
// Account
|
|
//
|
|
// Created by Kiel Gillard on 8/11/19.
|
|
// Copyright © 2019 Ranchero Software. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension OAuthAuthorizationClient {
|
|
|
|
static var feedlyCloudClient: OAuthAuthorizationClient {
|
|
/// Models private NetNewsWire client secrets.
|
|
/// These placeholders are substitued at build time using a Run Script phase with build settings.
|
|
/// https://developer.feedly.com/v3/auth/#authenticating-a-user-and-obtaining-an-auth-code
|
|
return OAuthAuthorizationClient(id: Secrets.feedlyClientId,
|
|
redirectUri: "netnewswire://auth/feedly",
|
|
state: nil,
|
|
secret: Secrets.feedlyClientSecret)
|
|
}
|
|
|
|
static var feedlySandboxClient: OAuthAuthorizationClient {
|
|
/// We use this funky redirect URI because ASWebAuthenticationSession will try to load http://localhost URLs.
|
|
/// See https://developer.feedly.com/v3/sandbox/ for more information.
|
|
/// The return value models public sandbox API values found at:
|
|
/// https://groups.google.com/forum/#!topic/feedly-cloud/WwQWMgDmOuw
|
|
/// They are due to expire on January 31 2020.
|
|
/// Verify the sandbox URL host in the FeedlyAPICaller.API.baseUrlComponents method, too.
|
|
return OAuthAuthorizationClient(id: "sandbox",
|
|
redirectUri: "urn:ietf:wg:oauth:2.0:oob",
|
|
state: nil,
|
|
secret: "nZmS4bqxgRQkdPks")
|
|
}
|
|
}
|