authenticate abstract method

  1. @Post(path: 'authenticate')
  2. @FactoryConverter(request: FormUrlEncodedConverter.requestFactory)
Future<Response<AuthenticateBody>> authenticate({
  1. @Field() required String key,
  2. @Field() required String secret,
})

Retrieves a temporary auth token

Implementation

@Post(path: 'authenticate')
@FactoryConverter(
  request: FormUrlEncodedConverter.requestFactory,
)
Future<Response<AuthenticateBody>> authenticate({
  @Field() required String key,
  @Field() required String secret,
});