appKeyInterceptor property

Interceptor appKeyInterceptor
read / write

Implementation

static Interceptor appKeyInterceptor =
    InterceptorsWrapper(onRequest: (RequestOptions options) async {
  var appKey = KakaoContext.clientId;
  options.headers["Authorization"] = "KakaoAK $appKey";
  return options;
})