Merge pull request #1395 from kielgillard/missing-data-1326

Feedly: Optional feed titles
This commit is contained in:
Brent Simmons 2019-12-03 21:43:36 -08:00 committed by GitHub
commit bb58406e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 4 deletions

View File

@ -11,7 +11,7 @@ import Foundation
struct FeedlyFeed: Codable {
var feedId: String
var id: String
var title: String
var title: String?
var updated: Date?
var website: String?
}

View File

@ -9,7 +9,7 @@
import Foundation
struct FeedlyOrigin: Decodable {
var title: String
var title: String?
var streamId: String
var htmlUrl: String
}

View File

@ -25,10 +25,11 @@ extension OAuthAuthorizationClient {
/// 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 November 30 2019.
/// 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: "ReVGXA6WekanCxbf")
secret: "nZmS4bqxgRQkdPks")
}
}