makeAuthorizedURL static method

String makeAuthorizedURL(
  1. ConnectionOptions config,
  2. String token
)

Create authorized URL

Implementation

static String makeAuthorizedURL(ConnectionOptions config, String token) {
  var base = makeBaseURL(config);
  return base + '&auth=token&secret=' + token;
}