Variable OAUTH1_CONFIG_SCHEMAConst
OAUTH1_CONFIG_SCHEMA: {
type: string;
properties: {
consumerKey: { type: string };
consumerSecret: { type: string };
requestTokenUri: { type: string };
authorizeUri: { type: string };
tokenUri: { type: string };
scopes: { type: string; items: { type: string } };
extra: {
type: string;
additionalProperties: boolean;
description: string;
};
};
}
Type declaration
type: string
properties: {
consumerKey: { type: string };
consumerSecret: { type: string };
requestTokenUri: { type: string };
authorizeUri: { type: string };
tokenUri: { type: string };
scopes: { type: string; items: { type: string } };
extra: { type: string; additionalProperties: boolean; description: string };
}