quickauth method

  1. @MPI(flags: 8, name: "mesh.auth.quickauth")
Future<AccessToken?> quickauth(
  1. Credential credential, {
  2. Context? ctx,
})

Quickauth OAuth2 quick authorize, contains grant code and code authorize. 快速授权,OAuth2多阶段合并为一阶段.

Implementation

@MPI(flags: 8, name: "mesh.auth.quickauth")
Future<AccessToken?> quickauth(Credential credential, {Context? ctx}) {
  throw UnimplementedError('quickauth() has not been implemented.');
}