-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🎉 Source Mailchimp: support oauth flow (#7159)
* add mailchimp oauth support * add PR * fix creds * upd spec * format * upd creds * upd auth for different creds * rename creds * rename creds * change ref in campaigns.json * upd timeout_seconds * merge * add oauth java part * add java test * bump version * update spec * add anotation * upd spec * upd spec * upd * upd tests * format * upd * upd * add state * add invalid_config * bump version * format
- Loading branch information
1 parent
d65b8f9
commit d09829b
Showing
14 changed files
with
422 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
airbyte-integrations/connectors/source-mailchimp/integration_tests/integration_test.py
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
...yte-integrations/connectors/source-mailchimp/integration_tests/invalid_config_apikey.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"credentials": { | ||
"auth_type": "apikey", | ||
"apikey": "api-key-awesome" | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
airbyte-integrations/connectors/source-mailchimp/integration_tests/invalid_config_oauth.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"credentials": { | ||
"auth_type": "oauth2.0", | ||
"client_id": "client_id", | ||
"client_secret": "client_secret", | ||
"access_token": "access_token" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.