-
Notifications
You must be signed in to change notification settings - Fork 3.4k
fix: readme things that didnt work for me #129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
duke8585
wants to merge
4
commits into
patchy631:main
Choose a base branch
from
duke8585:patch-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -209,7 +209,7 @@ PARAMETERS = { | |
| Make sure to choose `External` for `User Type`, and select the necessary scopes. | ||
| Make sure to save the changes. | ||
|
|
||
| - Now, create the OAuth client ID. Choose `Web application` for the `Application Type` and give it a name. | ||
| - Now, create the OAuth client ID. Choose `Web application` for the `Application Type` and give it a name. Sometimes it might not work straightforward and you need to setup a `Desktop application` instead. | ||
|
|
||
| - Add the following MindsDB URL to `Authorized redirect URIs`: | ||
|
|
||
|
|
@@ -221,6 +221,13 @@ PARAMETERS = { | |
| 4. Download the JSON file: | ||
|
|
||
| - After creating your credentials, click the download button (an icon of an arrow pointing down) on the right side of your client ID. This will download a JSON file, so you will use the location to it in the `credentials_file` param. | ||
| - The JSON file can be placed into the container filesystem via [cat+EOF-pasting](https://stackoverflow.com/a/21549836) or via mounting it on container launch | ||
| ```sh | ||
| docker run -it \ | ||
| -v /Users/my.name/Downloads/downloaded_creds.json:/mindsdb/mindsdb/integrations/handlers/gmail_handler/client_secret.json \ | ||
| -p 47334:47334 -p 47335:47335 \ | ||
| mindsdb/mindsdb | ||
| ``` | ||
|
|
||
| 5. Add user authentication: | ||
|
|
||
|
|
@@ -235,9 +242,11 @@ Go to the MindsDB editor running locally at `127.0.0.1:47334` and run the follow | |
| CREATE DATABASE mindsdb_gmail | ||
| WITH ENGINE = 'gmail', | ||
| PARAMETERS = { | ||
| "credentials_file": "path/to/credentials.json", | ||
| PARAMETERS = { | ||
| "credentials_file": "/mindsdb/mindsdb/integrations/handlers/gmail_handler/client_secret.json", | ||
| "scopes": ['https://.../gmail.compose', 'https://.../gmail.readonly'] | ||
| }; | ||
| }; | ||
|
||
| ``` | ||
|
|
||
| When prompted, sign in with the Google account you added to the `Test users` in your app and you are good to go. | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.