Posts

Showing posts with the label tech
Once you have created your Google OAuth API Keys , you may be wondering how to authorize redirect URIs for your applications? or may you are receiving Error:redirect_uri_mismatch error. You can correct it by following these simple steps below. Note: This steps are intended for novice users. Go to Google API console and click API Access tab on the sidebar. Click Edit Settings under Client ID for web applications block. Enter your URIs, one per line as shown in picture below, and click Save/Update. That’s it, your application should work without any interruption from now on. For more info you can checkout google documentation here .
Post a Comment
Google API lets you play with the core of Google system, by building queries, a client can access required data from various Google services, which can be used to build all types of Google based applications. Before sending API queries, a client application needs Google API keys. In this basic tutorial we will learn about obtaining Google API Keys and developer key from Google API console. Create Client ID and Client Secret Sign-in to Google and go to Google API console ,  click API Access  on the left sidebar, click big blue button “ Create an OAuth 2.0 Cliend ID “. A box should pop-up, enter your Project name and Product logo (optional), click next. Next choose your application type, usually it is Web application for websites. You should now be presented with Google Client ID and Client Secret on next page. You can use this information in your Google applications. Creating Developer Key Developer key is required to identify the project you’ve undert...
Post a Comment