forked from LaconicNetwork/icns-frontend
12 lines
287 B
TypeScript
12 lines
287 B
TypeScript
export const twitterOAuthBaseUrl = "https://twitter.com/i/oauth2/authorize";
|
|
|
|
export const twitterOAuthScopes = [
|
|
"users.read",
|
|
"tweet.read",
|
|
"offline.access",
|
|
];
|
|
|
|
export const twitterApiBaseUrl = "https://api.twitter.com/2";
|
|
|
|
export const SHARE_URL = "https://twitter.com/share";
|