René's URL Explorer Experiment


Title: oauth2client on GCE throws AttributeError no attribute redirect_uri · Issue #342 · ryanpraski/google-api-python-client · GitHub

Open Graph Title: oauth2client on GCE throws AttributeError no attribute redirect_uri · Issue #342 · ryanpraski/google-api-python-client

X Title: oauth2client on GCE throws AttributeError no attribute redirect_uri · Issue #342 · ryanpraski/google-api-python-client

Description: [Use this form for both apiclient and oauth2client issues] What steps will reproduce the problem? 1. I am porting an Python 2.7 script to a new GCE 2. The script runs on local laptop and connects to BigQuery perfectly 3. The script throw...

Open Graph Description: [Use this form for both apiclient and oauth2client issues] What steps will reproduce the problem? 1. I am porting an Python 2.7 script to a new GCE 2. The script runs on local laptop and connects t...

X Description: [Use this form for both apiclient and oauth2client issues] What steps will reproduce the problem? 1. I am porting an Python 2.7 script to a new GCE 2. The script runs on local laptop and connects t...

Opengraph URL: https://github.com/ryanpraski/google-api-python-client/issues/342

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"oauth2client on GCE throws AttributeError no attribute redirect_uri","articleBody":"```\n[Use this form for both apiclient and oauth2client issues]\n\nWhat steps will reproduce the problem?\n1. I am porting an Python 2.7 script to a new GCE\n2. The script runs on local laptop and connects to BigQuery perfectly\n3. The script throws error when run on GCE instance\n\nWhat is the expected output? What do you see instead?\nWhen run on local laptop all is good. But, when run on a new GCE which I build \n2 hours ago with the latest client API, the script throws the following error \nafter the client creates the flow:\n\n\n_HAVE_FLOW: True\nTEST _HAVE_FLOW: True\nhave storage, next use it to retrieve credential from file: \nbigquery_credentials.dat\nERROR - credentials is None\nRun oauth2 flow with default arguments\n - Write_CVS_Records_to_BigQuery() Unexpected error: \u003ctype 'exceptions.AttributeError'\u003e\nWrite_CVS_Records_to_BigQuery() AttributeError: 'NoneType' object has no \nattribute 'redirect_uri'\nCLOUDSDK_CONFIG: /home/.../.config/gcloud\nGOOGLE_APPLICATION_CREDENTIALS: \nclient_secret_Xkjduoiyewryq3.apps.googleusercontent.com.json\nGCLOUD_DATASET_ID: applied-algebra-93003\n------------------------------------------------------------\nTraceback (most recent call last):\n  File \"/dump/CI_SA_load_bq.py\", line 221, in Write_CVS_Records_to_BigQuery\n    credentials = tools.run_flow(_FLOW, storage, tools.argparser.parse_args([]))\n  File \"/usr/lib/python2.7/site-packages/oauth2client/util.py\", line 137, in positional_wrapper\n    return wrapped(*args, **kwargs)\n  File \"/usr/lib/python2.7/site-packages/oauth2client/tools.py\", line 190, in run_flow\n    flow.redirect_uri = oauth_callback\nAttributeError: 'NoneType' object has no attribute 'redirect_uri'\n------------------------------------------------------------\nTraceback (most recent call last):\n  File \"/dump/CI_SA_load_bq.py\", line 266, in \u003cmodule\u003e\n    Write_CVS_Records_to_BigQuery()\n  File \"/dump/CI_SA_load_bq.py\", line 221, in Write_CVS_Records_to_BigQuery\n    credentials = tools.run_flow(_FLOW, storage, tools.argparser.parse_args([]))\n  File \"/usr/lib/python2.7/site-packages/oauth2client/util.py\", line 137, in positional_wrapper\n    return wrapped(*args, **kwargs)\n  File \"/usr/lib/python2.7/site-packages/oauth2client/tools.py\", line 190, in run_flow\n    flow.redirect_uri = oauth_callback\nAttributeError: 'NoneType' object has no attribute 'redirect_uri'\n ~]$ \n\nWhat version of the product are you using? On what operating system?\nThe latest verion installed by pip. The most recent Centos version of GCE\n\nPlease provide any additional information below.\n\nMore than likely this is a configuration problem on the GCE; I've likely missed \nadding some setting required on a GCE instance. Here's the 2 suspect methods \nrelated to the AttributeError:\n\n_SECRET_FILE_NAME='client_secret_devgce2.apps.googleusercontent.com.json'\n_REDIRECT_URI='urn:ietf:wg:oauth:2.0:oob'\n\n# Set up flow object to be used for authenticating the client\ndef Get_Client_Flow():\n    try:\n        if os.path.exists(_SECRET_FOLDER_NAME):\n            print \"_SECRET_FOLDER_NAME: %s exists\"%(str(_SECRET_FOLDER_NAME))\n            _SECRET_FILE = os.path.join(_SECRET_FOLDER_NAME,_SECRET_FILE_NAME)\n            if os.path.isfile(_SECRET_FILE):               \n                print \"_SECRET_FILE: %s exists\"%(_SECRET_FILE)                \n                _HAVE_SECRET_FILE=True\n                _FLOW = flow_from_clientsecrets(_SECRET_FILE,\n                                       scope='https://www.googleapis.com/auth/bigquery',\n                                       redirect_uri=_REDIRECT_URI)\n                if not _FLOW==None:\n                    _HAVE_FLOW.append(True)\n                    print (\"_HAVE_FLOW: %s\")%(_HAVE_FLOW[0])\n                else:\n                    _HAVE_FLOW.append(False)\n                    print (\"_HAVE_FLOW: %s\")%(_HAVE_FLOW[0])\n            else:\n                print \"_SECRET_FILE: %s does not exist\"%(str(_SECRET_FILE)) \n        else:\n            print \"_SECRET_FOLDER_NAME: %s does not exist\"%(str(_SECRET_FOLDER_NAME))\n\n    except Exception, inst:\n        print \"\\n - Get_Client_Flow() Unexpected error: %s\"%(str(sys.exc_info()[0]))\n        if isinstance(inst,ValueError):\n            print \"Get_Client_Flow() - ValueError: %s\\n\"%(inst.message)\n        if isinstance(inst,AttributeError):\n            print \"Get_Client_Flow() - AttributeError: %s\\n\"%(inst.message)\n        if isinstance(inst,TypeError):\n            print \"Get_Client_Flow() - TypeError: %s\\n\"%(inst.message)      \n        #print \"\\nPYTHONPATH: %s\" % (os.environ['PYTHONPATH'])\n        print \"CLOUDSDK_CONFIG: %s\" %  (os.environ['CLOUDSDK_CONFIG'])\n        print \"GOOGLE_APPLICATION_CREDENTIALS: %s\"%(os.environ['GOOGLE_APPLICATION_CREDENTIALS'])\n        print \"GCLOUD_DATASET_ID: %s\"%(os.environ['GCLOUD_DATASET_ID'])    \n        print '-'*60\n        traceback.print_exc(file=sys.stdout)\n        print '-'*60                            \n        raise  \n\n\ndef Write_CVS_Records_to_BigQuery():\n    try:\n        print \"\\n Write_CVS_Records_to_BigQuery()\"\n        '''\n        Connect to BigQuery Service API\n        '''\n        Get_Client_Flow()\n\n        if _HAVE_FLOW[0]:\n            print (\"TEST _HAVE_FLOW: %s\")%(_HAVE_FLOW[0])\n            #_FLOW.redirect_uri = _REDIRECT_URI\n\n            # GET oauth2client STORAGE\n            storage = Storage('bigquery_credentials.dat')\n            if storage is None:\n                print \"storage is None, error creating means for retrieving credential from file: %s\"%('bigquery_credentials.dat')\n            else:\n                print \"have storage, next use it to retrieve credential from file: %s\"%('bigquery_credentials.dat')\n                credentials = storage.get()\n                if credentials is None:\n                    print \"ERROR - credentials is None\"\n\n            if credentials is None or credentials.invalid:\n                print \"Run oauth2 flow with default arguments\"\n                # Run oauth2 flow with default arguments.\n                credentials = tools.run_flow(_FLOW, storage, tools.argparser.parse_args([]))\n\n            # create the HTTP object to handle your requests, and authorize with your credentials\n            http = httplib2.Http()\n            http = credentials.authorize(http)\n\n            # create the service object for interacting with BigQuery\n            _BIGQUERY_SERVICE = build('bigquery', 'v2', http=http)\n\n            print (\"BEGIN call to loadTable()\")\n            try:\n                #print \"did not call loadTable()\"\n                loadTable(_BIGQUERY_SERVICE, _PROJECT_NUMBER, _BIGQUERY_DATASET_ID, _TARGET_TABLE_ID, _SOURCE_CSV)\n\n            except HttpError as err:\n                print 'Write_CVS_Records_to_BigQuery() HttpError:', pprint.pprint(err.resp)\n                print 'Write_CVS_Records_to_BigQuery()- HttpError content: %s: '%(err.content)\n                print 'Write_CVS_Records_to_BigQuery() HttpError uri - loadTable(): ', pprint.pprint(err.uri)\n\n            except AccessTokenRefreshError:\n                print (\"Write_CVS_Records_to_BigQuery() - Credentials have been revoked or expired, please re-run\"\n                       \"the application to re-authorize\")\n        else:\n            print (\"TEST _HAVE_FLOW: %s\")%(_HAVE_FLOW[0])\n\n    except Exception, inst:\n        print \"\\n - Write_CVS_Records_to_BigQuery() Unexpected error: %s\"%(str(sys.exc_info()[0]))\n        if isinstance(inst,ValueError):\n            print \"Write_CVS_Records_to_BigQuery() ValueError: %s\\n\"%(inst.message)\n        if isinstance(inst,AttributeError):\n            print \"Write_CVS_Records_to_BigQuery() AttributeError: %s\\n\"%(inst.message)\n        if isinstance(inst,TypeError):\n            print \"Write_CVS_Records_to_BigQuery()TypeError: %s\\n\"%(inst.message)      \n        #print \"\\nPYTHONPATH: %s\" % (os.environ['PYTHONPATH'])\n        print \"CLOUDSDK_CONFIG: %s\" %  (os.environ['CLOUDSDK_CONFIG'])\n        print \"GOOGLE_APPLICATION_CREDENTIALS: %s\"%(os.environ['GOOGLE_APPLICATION_CREDENTIALS'])\n        print \"GCLOUD_DATASET_ID: %s\"%(os.environ['GCLOUD_DATASET_ID'])    \n        print '-'*60\n        traceback.print_exc(file=sys.stdout)\n        print '-'*60                            \n        raise\n\n This is not likely, in my view, a bug with the API, but a matter of an omitted setting in the code or in the .bashrc file. The only difference in the code that runs on the laptop and the code that fails to run on the GCE is the new addition of _REDIRECT_URI (when creating the flow object)\n\nAny suggestions to fix this mis-configuration are appreciated.\n\n\n```\n\nOriginal issue reported on code.google.com by `ccliff...@archipelagois.com` on 12 May 2015 at 9:57\n","author":{"url":"https://github.com/GoogleCodeExporter","@type":"Person","name":"GoogleCodeExporter"},"datePublished":"2015-09-09T16:42:28.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/342/google-api-python-client/issues/342"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:53e55fe7-9dbe-87e4-24d8-06bc9dc2f09d
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDA6E:1478FE:64A898:8158DA:6990A87E
html-safe-nonce68aec563777a6709cdfd57c094a2f0222bc7d79a0a3beb9c0d24c4d0204b2595
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQTZFOjE0NzhGRTo2NEE4OTg6ODE1OERBOjY5OTBBODdFIiwidmlzaXRvcl9pZCI6IjY0MDU0MzIyMTQ2MjQ5NzA4NzgiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac0fb946488fe48294016f1ac1f3470f6c95621a7c79a2a19a663ee61e014c4f1e
hovercard-subject-tagissue:105636491
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/ryanpraski/google-api-python-client/342/issue_layout
twitter:imagehttps://opengraph.githubassets.com/19a6a523eccffff34f5d19cf9a29fec201a36fd63a051c1123a696ccdb42342a/ryanpraski/google-api-python-client/issues/342
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/19a6a523eccffff34f5d19cf9a29fec201a36fd63a051c1123a696ccdb42342a/ryanpraski/google-api-python-client/issues/342
og:image:alt[Use this form for both apiclient and oauth2client issues] What steps will reproduce the problem? 1. I am porting an Python 2.7 script to a new GCE 2. The script runs on local laptop and connects t...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameGoogleCodeExporter
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
go-importgithub.com/ryanpraski/google-api-python-client git https://github.com/ryanpraski/google-api-python-client.git
octolytics-dimension-user_id2982734
octolytics-dimension-user_loginryanpraski
octolytics-dimension-repository_id42191160
octolytics-dimension-repository_nworyanpraski/google-api-python-client
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id42191160
octolytics-dimension-repository_network_root_nworyanpraski/google-api-python-client
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release3b33c5aedc9808f45bc5fcf0b1e4404cf749dac7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues/342#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fryanpraski%2Fgoogle-api-python-client%2Fissues%2F342
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fryanpraski%2Fgoogle-api-python-client%2Fissues%2F342
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=ryanpraski%2Fgoogle-api-python-client
Reloadhttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues/342
Reloadhttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues/342
Reloadhttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues/342
ryanpraski https://patch-diff.githubusercontent.com/ryanpraski
google-api-python-clienthttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fryanpraski%2Fgoogle-api-python-client
Fork 0 https://patch-diff.githubusercontent.com/login?return_to=%2Fryanpraski%2Fgoogle-api-python-client
Star 1 https://patch-diff.githubusercontent.com/login?return_to=%2Fryanpraski%2Fgoogle-api-python-client
Code https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client
Issues 89 https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues
Pull requests 0 https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/pulls
Actions https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/actions
Projects 0 https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/projects
Security 0 https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/security
Insights https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/pulse
Code https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client
Issues https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues
Pull requests https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/pulls
Actions https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/actions
Projects https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/projects
Security https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/security
Insights https://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/ryanpraski/google-api-python-client/issues/342
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/ryanpraski/google-api-python-client/issues/342
oauth2client on GCE throws AttributeError no attribute redirect_urihttps://patch-diff.githubusercontent.com/ryanpraski/google-api-python-client/issues/342#top
Priority-Mediumhttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22Priority-Medium%22
Type-Defecthttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22Type-Defect%22
auto-migratedhttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22auto-migrated%22
https://github.com/GoogleCodeExporter
https://github.com/GoogleCodeExporter
GoogleCodeExporterhttps://github.com/GoogleCodeExporter
on Sep 9, 2015https://github.com/ryanpraski/google-api-python-client/issues/342#issue-105636491
Priority-Mediumhttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22Priority-Medium%22
Type-Defecthttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22Type-Defect%22
auto-migratedhttps://github.com/ryanpraski/google-api-python-client/issues?q=state%3Aopen%20label%3A%22auto-migrated%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.