In created application on Google's Developer Console How to create OAuth credentials?
up vote
2
down vote
favorite
I try to install
https://github.com/JoeDawson/youtube pluging
which demands
GOOGLE_CLIENT_ID=YOUR_CLIENT_ID
GOOGLE_CLIENT_SECRET=YOUR_SECRET
parameters.
To get them I created an application on Google's Developer Console as :
https://imgur.com/a/uF5XeDF
Is it correct place new project ?
But I did not find how to create OAuth credentials
But I did not find where have I to create GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET ?
Is it correct editor just after I have registered myself at Google's Developer Console and completed my Profile by filling questions by link
in confirmation email ?
google-apps-script console
add a comment |
up vote
2
down vote
favorite
I try to install
https://github.com/JoeDawson/youtube pluging
which demands
GOOGLE_CLIENT_ID=YOUR_CLIENT_ID
GOOGLE_CLIENT_SECRET=YOUR_SECRET
parameters.
To get them I created an application on Google's Developer Console as :
https://imgur.com/a/uF5XeDF
Is it correct place new project ?
But I did not find how to create OAuth credentials
But I did not find where have I to create GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET ?
Is it correct editor just after I have registered myself at Google's Developer Console and completed my Profile by filling questions by link
in confirmation email ?
google-apps-script console
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I try to install
https://github.com/JoeDawson/youtube pluging
which demands
GOOGLE_CLIENT_ID=YOUR_CLIENT_ID
GOOGLE_CLIENT_SECRET=YOUR_SECRET
parameters.
To get them I created an application on Google's Developer Console as :
https://imgur.com/a/uF5XeDF
Is it correct place new project ?
But I did not find how to create OAuth credentials
But I did not find where have I to create GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET ?
Is it correct editor just after I have registered myself at Google's Developer Console and completed my Profile by filling questions by link
in confirmation email ?
google-apps-script console
I try to install
https://github.com/JoeDawson/youtube pluging
which demands
GOOGLE_CLIENT_ID=YOUR_CLIENT_ID
GOOGLE_CLIENT_SECRET=YOUR_SECRET
parameters.
To get them I created an application on Google's Developer Console as :
https://imgur.com/a/uF5XeDF
Is it correct place new project ?
But I did not find how to create OAuth credentials
But I did not find where have I to create GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET ?
Is it correct editor just after I have registered myself at Google's Developer Console and completed my Profile by filling questions by link
in confirmation email ?
google-apps-script console
google-apps-script console
edited Nov 19 at 9:43
Billal Begueradj
5,616132637
5,616132637
asked Nov 19 at 6:26
Ivan
40529
40529
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
You may check this blog on how to get Google app Client ID and Client Secret.
- Login to Google Developer Console at https://console.developers.google.com using your google account credentials.
- If you are not registered on Google developer account, then you need to accept agreement.
- After accepting agreement or if you are already registered on Google developer account, you will see a screen as shown below. Click on “Select a project” on top header bar.
- From the project selection popup click on the button with plus icon to add new project.
- Enter your “Project name” and click on “Create” button.
- It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)
- From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.
- It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.
- From the dashboard click on “Credentials” from the left side menu.
- From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.
- From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.
- On OAuth client id creation screen:
- Select the “Web Application” radio button from the “Application Type”.
- Enter your application name in “Name” field. This name will be shown to end users when they are asked to give login permission to your website. So please specify meaningful name which can identify your website.
- Enter your catalog site URL in “Authorized JavaScript origins”. For example, if website domain is yourdomain.com, enter http://yourdomain.com
- In “Authorized redirect URIs” input box, enter your website URL + the page/end-point where you wanted your user redirected back. If you are using Microsoft.Owin.Security.Google library, the end-point is “/signin-google”. For example, my website url is http://yourdomain.com, so I enter http://yourdomain.com/signin-google
- Click on “Create” Button.
- It will display the popup with client id and client secret.
You may also follow this documentation on how to use OAuth 2.0 to access Google APIs.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
You may check this blog on how to get Google app Client ID and Client Secret.
- Login to Google Developer Console at https://console.developers.google.com using your google account credentials.
- If you are not registered on Google developer account, then you need to accept agreement.
- After accepting agreement or if you are already registered on Google developer account, you will see a screen as shown below. Click on “Select a project” on top header bar.
- From the project selection popup click on the button with plus icon to add new project.
- Enter your “Project name” and click on “Create” button.
- It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)
- From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.
- It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.
- From the dashboard click on “Credentials” from the left side menu.
- From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.
- From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.
- On OAuth client id creation screen:
- Select the “Web Application” radio button from the “Application Type”.
- Enter your application name in “Name” field. This name will be shown to end users when they are asked to give login permission to your website. So please specify meaningful name which can identify your website.
- Enter your catalog site URL in “Authorized JavaScript origins”. For example, if website domain is yourdomain.com, enter http://yourdomain.com
- In “Authorized redirect URIs” input box, enter your website URL + the page/end-point where you wanted your user redirected back. If you are using Microsoft.Owin.Security.Google library, the end-point is “/signin-google”. For example, my website url is http://yourdomain.com, so I enter http://yourdomain.com/signin-google
- Click on “Create” Button.
- It will display the popup with client id and client secret.
You may also follow this documentation on how to use OAuth 2.0 to access Google APIs.
add a comment |
up vote
1
down vote
accepted
You may check this blog on how to get Google app Client ID and Client Secret.
- Login to Google Developer Console at https://console.developers.google.com using your google account credentials.
- If you are not registered on Google developer account, then you need to accept agreement.
- After accepting agreement or if you are already registered on Google developer account, you will see a screen as shown below. Click on “Select a project” on top header bar.
- From the project selection popup click on the button with plus icon to add new project.
- Enter your “Project name” and click on “Create” button.
- It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)
- From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.
- It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.
- From the dashboard click on “Credentials” from the left side menu.
- From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.
- From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.
- On OAuth client id creation screen:
- Select the “Web Application” radio button from the “Application Type”.
- Enter your application name in “Name” field. This name will be shown to end users when they are asked to give login permission to your website. So please specify meaningful name which can identify your website.
- Enter your catalog site URL in “Authorized JavaScript origins”. For example, if website domain is yourdomain.com, enter http://yourdomain.com
- In “Authorized redirect URIs” input box, enter your website URL + the page/end-point where you wanted your user redirected back. If you are using Microsoft.Owin.Security.Google library, the end-point is “/signin-google”. For example, my website url is http://yourdomain.com, so I enter http://yourdomain.com/signin-google
- Click on “Create” Button.
- It will display the popup with client id and client secret.
You may also follow this documentation on how to use OAuth 2.0 to access Google APIs.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
You may check this blog on how to get Google app Client ID and Client Secret.
- Login to Google Developer Console at https://console.developers.google.com using your google account credentials.
- If you are not registered on Google developer account, then you need to accept agreement.
- After accepting agreement or if you are already registered on Google developer account, you will see a screen as shown below. Click on “Select a project” on top header bar.
- From the project selection popup click on the button with plus icon to add new project.
- Enter your “Project name” and click on “Create” button.
- It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)
- From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.
- It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.
- From the dashboard click on “Credentials” from the left side menu.
- From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.
- From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.
- On OAuth client id creation screen:
- Select the “Web Application” radio button from the “Application Type”.
- Enter your application name in “Name” field. This name will be shown to end users when they are asked to give login permission to your website. So please specify meaningful name which can identify your website.
- Enter your catalog site URL in “Authorized JavaScript origins”. For example, if website domain is yourdomain.com, enter http://yourdomain.com
- In “Authorized redirect URIs” input box, enter your website URL + the page/end-point where you wanted your user redirected back. If you are using Microsoft.Owin.Security.Google library, the end-point is “/signin-google”. For example, my website url is http://yourdomain.com, so I enter http://yourdomain.com/signin-google
- Click on “Create” Button.
- It will display the popup with client id and client secret.
You may also follow this documentation on how to use OAuth 2.0 to access Google APIs.
You may check this blog on how to get Google app Client ID and Client Secret.
- Login to Google Developer Console at https://console.developers.google.com using your google account credentials.
- If you are not registered on Google developer account, then you need to accept agreement.
- After accepting agreement or if you are already registered on Google developer account, you will see a screen as shown below. Click on “Select a project” on top header bar.
- From the project selection popup click on the button with plus icon to add new project.
- Enter your “Project name” and click on “Create” button.
- It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)
- From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.
- It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.
- From the dashboard click on “Credentials” from the left side menu.
- From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.
- From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.
- On OAuth client id creation screen:
- Select the “Web Application” radio button from the “Application Type”.
- Enter your application name in “Name” field. This name will be shown to end users when they are asked to give login permission to your website. So please specify meaningful name which can identify your website.
- Enter your catalog site URL in “Authorized JavaScript origins”. For example, if website domain is yourdomain.com, enter http://yourdomain.com
- In “Authorized redirect URIs” input box, enter your website URL + the page/end-point where you wanted your user redirected back. If you are using Microsoft.Owin.Security.Google library, the end-point is “/signin-google”. For example, my website url is http://yourdomain.com, so I enter http://yourdomain.com/signin-google
- Click on “Create” Button.
- It will display the popup with client id and client secret.
You may also follow this documentation on how to use OAuth 2.0 to access Google APIs.
answered Nov 19 at 14:29
abielita
9,0662839
9,0662839
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53369334%2fin-created-application-on-googles-developer-console-how-to-create-oauth-credent%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown