tessl install tessl/pypi-google-auth-oauthlib@1.2.0Google Authentication Library - oauthlib integration for OAuth 2.0 flows.
Agent Success
Agent success rate when using this tile
83%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.05x
Baseline
Agent success rate without this tile
79%
{
"context": "This criteria evaluates how well the engineer uses google-auth-oauthlib's redirect URI customization capabilities. The focus is on correctly creating a Flow instance, setting a custom redirect_uri, and using the flow to complete the OAuth authorization process.",
"type": "weighted_checklist",
"checklist": [
{
"name": "Flow Creation",
"description": "Uses Flow.from_client_secrets_file() to create the OAuth flow from the client secrets file path with the specified scopes",
"max_score": 25
},
{
"name": "Redirect URI Customization",
"description": "Sets the flow's redirect_uri property to the custom redirect URI value provided via command-line argument (not using the default redirect URI)",
"max_score": 40
},
{
"name": "Authorization URL Generation",
"description": "Calls flow.authorization_url() to generate the authorization URL, which will include the custom redirect_uri parameter",
"max_score": 20
},
{
"name": "Token Fetch",
"description": "Uses flow.fetch_token() with the authorization code parameter to complete the OAuth flow and obtain credentials",
"max_score": 15
}
]
}