twitter-scrapper/.vscode/settings.json

29 lines
576 B
JSON
Raw Normal View History

2024-03-09 04:54:41 +03:00
{
// Most test requiers some auth, prefer using auth token to prevent get banned.
"go.testEnvVars": {
// Skip all tests that requires auth
"SKIP_AUTH_TEST": "",
// Test auth token
"AUTH_TOKEN": "",
2024-03-09 18:26:46 +03:00
"CSRF_TOKEN": "",
2024-03-09 04:54:41 +03:00
// Test auth with cookies
"COOKIES": "",
// Test login & password
"TWITTER_USERNAME": "",
"TWITTER_PASSWORD": "",
"TWITTER_EMAIL": "",
// Test open account
"TEST_OPEN_ACCOUNT": "",
"OAUTH_TOKEN": "",
"OAUTH_SECRET": "",
// Test with proxy
"PROXY": "",
"PROXY_REQUIRED": ""
}
}