InsecureCredentials
class InsecureCredentials implements FetchAuthTokenInterface (View source)
Provides a set of credentials that will always return an empty access token.
This is useful for APIs which do not require authentication, for local service emulators, and for testing.
Methods
Fetches the auth token. In this case it returns an empty string.
Returns the cache key. In this case it returns a null value, disabling caching.
Fetches the last received token. In this case, it returns the same empty string auth token.
Details
array
fetchAuthToken(callable $httpHandler = null)
Fetches the auth token. In this case it returns an empty string.
string
getCacheKey()
Returns the cache key. In this case it returns a null value, disabling caching.
null|array
getLastReceivedToken()
Fetches the last received token. In this case, it returns the same empty string auth token.