mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-30 03:51:05 +00:00
20 lines
517 B
Swift
20 lines
517 B
Swift
|
// Copyright © 2020 Metabolist. All rights reserved.
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
extension AccessTokenEndpoint: Stubbing {
|
||
|
func dataString(url: URL) -> String? {
|
||
|
switch self {
|
||
|
case let .oauthToken(_, _, _, _, scopes, _):
|
||
|
return """
|
||
|
{
|
||
|
"access_token": "ACCESS_TOKEN_STUB_VALUE",
|
||
|
"token_type": "Bearer",
|
||
|
"scope": "\(scopes)",
|
||
|
"created_at": "\(Int(Date().timeIntervalSince1970))"
|
||
|
}
|
||
|
"""
|
||
|
}
|
||
|
}
|
||
|
}
|