Skip to content
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

Update README to include scope in auth instructions #100

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DeploymentSteps.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ These instructions walk through the steps of installing the FHIR API on a Window
11. If you are applying migrations, complete the following steps. Otherwise skip to step 12.
1. From your local machine, connect to the dev server database in visual studio code using server explorer
1. Select Microsoft SQL Server
2. server name: `dstv-infc-1900.cdc.gov`, `dsdv-infc-1900.cdc.gov`
2. server name: `<db-server>.cdc.gov`
3. database name: `NVSSMESSAGING`
4. Paste the SQL code from step 4.1 in a new query and run to apply the migration
12. Before you update the API, double check what the current version is by navigating to the metadata endpoint, ex. for test is `https://test.astv-nvss-api.cdc.gov/MA/metadata`. The API version will be specified in the json response.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ curl --request POST --url 'https://<OAuthHost>/auth/oauth/v2/token' \
--data grant_type=password \
--data client_id='<OAuthClientID>' \
--data client_secret='<OAuthClientSecret>' \
--data scope='openid profile email' \
--data username='<Username>' \
--data password='<Password>'

Expand Down
Loading