René's URL Explorer Experiment


Title: Fix login issue by everaldorodrigo · Pull Request #297 · SmartAPI/smartAPI · GitHub

Open Graph Title: Fix login issue by everaldorodrigo · Pull Request #297 · SmartAPI/smartAPI

X Title: Fix login issue by everaldorodrigo · Pull Request #297 · SmartAPI/smartAPI

Description: Issue Parameter validation issue: Asking to have "url" parameter in the login endpoints. The biothings.api version is 0.12.5 and was not changed. Solution Set correct parameters in the login endpoints to be validated. Log example Aug 05 10:30:12 ip-172-40-40-110 python[1060666]: INFO:tornado.access:302 GET /oauth?next=/&code=XXXXXXXXXX (192.42.82.57) 483.83ms Aug 05 10:30:12 ip-172-40-40-110 python[1060648]: INFO:tornado.access:304 GET / (192.42.82.57) 1.56ms Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: DEBUG:biothings.web.handlers.base:GET /user Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ReqArgs() Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: OptionError({'missing': 'url'}) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: DEBUG:biothings.web.handlers.base: Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: Traceback (most recent call last): Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 127, in _parse_args Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: args = optionset.parse(self.request.method, reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 707, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: raise err # with helpful info Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 702, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: val = option.parse(reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 634, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: val = self._exists.inquire(val) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 466, in inquire Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: raise OptionError( Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: biothings.web.options.manager.OptionError: OptionError({'missing': 'url'}) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: During handling of the above exception, another exception occurred: Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: Traceback (most recent call last): Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/tornado/web.py", line 1767, in _execute Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: result = self.prepare() Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 95, in prepare Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: self.args = self._parse_args(reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: ^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 131, in _parse_args Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: raise HTTPError(400, None, err.info) Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: tornado.web.HTTPError: HTTP 400: Bad Request Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: WARNING:tornado.access:400 GET /user (192.42.82.57) 1.57ms Aug 05 10:30:13 ip-172-40-40-110 python[1060666]: DEBUG:biothings.web.handlers.base:Event({}) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: DEBUG:biothings.web.handlers.base:GET /user Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ReqArgs() Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: OptionError({'missing': 'url'}) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: DEBUG:biothings.web.handlers.base: Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: Traceback (most recent call last): Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 127, in _parse_args Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: args = optionset.parse(self.request.method, reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 707, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: raise err # with helpful info Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 702, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: val = option.parse(reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 634, in parse Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: val = self._exists.inquire(val) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/options/manager.py", line 466, in inquire Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: raise OptionError( Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: biothings.web.options.manager.OptionError: OptionError({'missing': 'url'}) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: During handling of the above exception, another exception occurred: Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: Traceback (most recent call last): Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/tornado/web.py", line 1767, in _execute Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: result = self.prepare() Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 95, in prepare Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: self.args = self._parse_args(reqargs) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: ^^^^^^^^^^^^^^^^^^^^^^^^^ Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: File "/home/ubuntu/smartapi/.env/lib/python3.12/site-packages/biothings/web/handlers/base.py", line 131, in _parse_args Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: raise HTTPError(400, None, err.info) Aug 05 10:30:13 ip-172-40-40-110 python[1060648]: tornado.web.HTTPError: HTTP 400: Bad Request

Open Graph Description: Issue Parameter validation issue: Asking to have "url" parameter in the login endpoints. The biothings.api version is 0.12.5 and was not changed. Solution Set correct parameters in the lo...

X Description: Issue Parameter validation issue: Asking to have "url" parameter in the login endpoints. The biothings.api version is 0.12.5 and was not changed. Solution Set correct parameters i...

Opengraph URL: https://github.com/SmartAPI/smartAPI/pull/297

X: @github

direct link

Domain: patch-diff.githubusercontent.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:dbfb99d5-ce34-66e4-b44d-5c01a5cd3cd2
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC096:C3055:86094E:AF7560:698FB9AD
html-safe-nonce93726cba4e7a4023afcc678ea0c2667d3dd07c73c8e5d50e58b27622a5898fda
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDMDk2OkMzMDU1Ojg2MDk0RTpBRjc1NjA6Njk4RkI5QUQiLCJ2aXNpdG9yX2lkIjoiMjM0OTczNDQyNDI0Mzg0NTU0OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmaca70f1f30c3d122396a001bcbd9653d3ff06001147d9bdb17e77ebb43babd8635
hovercard-subject-tagpull_request:2722267059
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/SmartAPI/smartAPI/pull/297/files
twitter:imagehttps://avatars.githubusercontent.com/u/5834247?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/5834247?s=400&v=4
og:image:altIssue Parameter validation issue: Asking to have "url" parameter in the login endpoints. The biothings.api version is 0.12.5 and was not changed. Solution Set correct parameters in the lo...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None42c603b9d642c4a9065a51770f75e5e27132fef0e858607f5c9cb7e422831a7b
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/SmartAPI/smartAPI git https://github.com/SmartAPI/smartAPI.git
octolytics-dimension-user_id24528940
octolytics-dimension-user_loginSmartAPI
octolytics-dimension-repository_id35257642
octolytics-dimension-repository_nwoSmartAPI/smartAPI
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id35257642
octolytics-dimension-repository_network_root_nwoSmartAPI/smartAPI
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release4084c47bba08e7ba5fab63cb1dd485a339910ed7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2FSmartAPI%2FsmartAPI%2Fpull%2F297%2Ffiles
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%2FSmartAPI%2FsmartAPI%2Fpull%2F297%2Ffiles
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%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=SmartAPI%2FsmartAPI
Reloadhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Reloadhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Reloadhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
SmartAPI https://patch-diff.githubusercontent.com/SmartAPI
smartAPIhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2FSmartAPI%2FsmartAPI
Fork 18 https://patch-diff.githubusercontent.com/login?return_to=%2FSmartAPI%2FsmartAPI
Star 22 https://patch-diff.githubusercontent.com/login?return_to=%2FSmartAPI%2FsmartAPI
Code https://patch-diff.githubusercontent.com/SmartAPI/smartAPI
Issues 28 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/issues
Pull requests 9 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pulls
Actions https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/actions
Projects 0 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/projects
Wiki https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/wiki
Security 0 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/security
Insights https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pulse
Code https://patch-diff.githubusercontent.com/SmartAPI/smartAPI
Issues https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/issues
Pull requests https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pulls
Actions https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/actions
Projects https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/projects
Wiki https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/wiki
Security https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/security
Insights https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pulse
Sign up for GitHub https://patch-diff.githubusercontent.com/signup?return_to=%2FSmartAPI%2FsmartAPI%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://patch-diff.githubusercontent.com/login?return_to=%2FSmartAPI%2FsmartAPI%2Fissues%2Fnew%2Fchoose
everaldorodrigohttps://patch-diff.githubusercontent.com/everaldorodrigo
mainhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/tree/main
fix-login-issuehttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/tree/fix-login-issue
Conversation 0 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297
Commits 5 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits
Checks 10 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/checks
Files changed https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Please reload this pagehttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Fix login issue https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#top
Show all changes 5 commits https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
b2f803b Fix parameter validation in login. everaldorodrigo Aug 5, 2025 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits/b2f803bd198301bc2132403418f2844dd48ec86f
dcd1fd9 Fix parameter validation in login. everaldorodrigo Aug 5, 2025 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits/dcd1fd960ae13ab4ceec5babcda35bd252e77a76
a233fb7 :nail_care: everaldorodrigo Aug 6, 2025 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits/a233fb7b357c09b98d74bb4edf465cb2b1f3e503
025277e :nail_care: everaldorodrigo Aug 6, 2025 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits/025277e69754504ac531190a5ed7ec3db5ce4640
40bab2f Add name to handlers and refactor. everaldorodrigo Aug 7, 2025 https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/commits/40bab2f9b9c7011b61354f8f7382db6050e2b1ae
Clear filters https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Please reload this pagehttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
Please reload this pagehttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files
api.py https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-aa410c5e3d822e368d33dc1eaf82e86a914a7f98e88bee7be92a423592a0a799
oauth.py https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-dc5e2bff6c8f9437b284aeee726fa2771c569001f6701a7b20eea1b6525af046
src/handlers/api.pyhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-aa410c5e3d822e368d33dc1eaf82e86a914a7f98e88bee7be92a423592a0a799
View file https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/blob/40bab2f9b9c7011b61354f8f7382db6050e2b1ae/src/handlers/api.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-aa410c5e3d822e368d33dc1eaf82e86a914a7f98e88bee7be92a423592a0a799
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-aa410c5e3d822e368d33dc1eaf82e86a914a7f98e88bee7be92a423592a0a799
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-aa410c5e3d822e368d33dc1eaf82e86a914a7f98e88bee7be92a423592a0a799
src/handlers/oauth.pyhttps://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-dc5e2bff6c8f9437b284aeee726fa2771c569001f6701a7b20eea1b6525af046
View file https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/blob/40bab2f9b9c7011b61354f8f7382db6050e2b1ae/src/handlers/oauth.py
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/{{ revealButtonHref }}
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-dc5e2bff6c8f9437b284aeee726fa2771c569001f6701a7b20eea1b6525af046
https://patch-diff.githubusercontent.com/SmartAPI/smartAPI/pull/297/files#diff-dc5e2bff6c8f9437b284aeee726fa2771c569001f6701a7b20eea1b6525af046
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.