Merge pull request #1395 from kielgillard/missing-data-1326
Feedly: Optional feed titles
This commit is contained in:
commit
bb58406e61
|
@ -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?
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
import Foundation
|
||||
|
||||
struct FeedlyOrigin: Decodable {
|
||||
var title: String
|
||||
var title: String?
|
||||
var streamId: String
|
||||
var htmlUrl: String
|
||||
}
|
||||
|
|
|
@ -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")
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue