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 ?










share|improve this question




























    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 ?










    share|improve this question


























      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 ?










      share|improve this question















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 16 hours ago









      Billal Begueradj

      5,511132637




      5,511132637










      asked 19 hours ago









      Ivan

      31119




      31119
























          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.





          1. Login to Google Developer Console at https://console.developers.google.com using your google account credentials.

          2. If you are not registered on Google developer account, then you need to accept agreement.

          3. 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.

          4. From the project selection popup click on the button with plus icon to add new project.

          5. Enter your “Project name” and click on “Create” button.

          6. It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)

          7. From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.

          8. It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.

          9. From the dashboard click on “Credentials” from the left side menu.

          10. From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.

          11. From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.

          12. 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.



          13. 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.






          share|improve this answer





















            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            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

























            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.





            1. Login to Google Developer Console at https://console.developers.google.com using your google account credentials.

            2. If you are not registered on Google developer account, then you need to accept agreement.

            3. 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.

            4. From the project selection popup click on the button with plus icon to add new project.

            5. Enter your “Project name” and click on “Create” button.

            6. It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)

            7. From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.

            8. It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.

            9. From the dashboard click on “Credentials” from the left side menu.

            10. From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.

            11. From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.

            12. 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.



            13. 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.






            share|improve this answer

























              up vote
              1
              down vote



              accepted










              You may check this blog on how to get Google app Client ID and Client Secret.





              1. Login to Google Developer Console at https://console.developers.google.com using your google account credentials.

              2. If you are not registered on Google developer account, then you need to accept agreement.

              3. 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.

              4. From the project selection popup click on the button with plus icon to add new project.

              5. Enter your “Project name” and click on “Create” button.

              6. It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)

              7. From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.

              8. It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.

              9. From the dashboard click on “Credentials” from the left side menu.

              10. From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.

              11. From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.

              12. 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.



              13. 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.






              share|improve this answer























                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.





                1. Login to Google Developer Console at https://console.developers.google.com using your google account credentials.

                2. If you are not registered on Google developer account, then you need to accept agreement.

                3. 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.

                4. From the project selection popup click on the button with plus icon to add new project.

                5. Enter your “Project name” and click on “Create” button.

                6. It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)

                7. From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.

                8. It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.

                9. From the dashboard click on “Credentials” from the left side menu.

                10. From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.

                11. From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.

                12. 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.



                13. 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.






                share|improve this answer












                You may check this blog on how to get Google app Client ID and Client Secret.





                1. Login to Google Developer Console at https://console.developers.google.com using your google account credentials.

                2. If you are not registered on Google developer account, then you need to accept agreement.

                3. 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.

                4. From the project selection popup click on the button with plus icon to add new project.

                5. Enter your “Project name” and click on “Create” button.

                6. It will open list page of API and Services. (you can also open this page from left side menu bar > “Library” menu)

                7. From the list page search API with name “Google+ API” and click on the box with name “Google+ API”.

                8. It will show the detail page of “Google+ API”, click on “Enable” button and it will return you back to dashboard.

                9. From the dashboard click on “Credentials” from the left side menu.

                10. From “Credentials” page click on “OAuth consent screen” tab and enter your website URL. Then click on “Save” button.

                11. From the Credentials tab, click on “Create Credentials” dropdown and select “OAuth client ID”.

                12. 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.



                13. 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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 11 hours ago









                abielita

                8,9732839




                8,9732839






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                    Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                    A Topological Invariant for $pi_3(U(n))$