complete_authentication
Complete the OAuth authentication process for Kroger by submitting the redirect URL obtained after browser authorization. This tool finalizes access for AI assistants to manage Kroger's grocery functionalities.
Instructions
Complete the OAuth flow using the redirect URL from Kroger.
After opening the auth URL in your browser and authorizing the app,
you'll be redirected to a callback URL. Copy that entire URL and
pass it to this tool to complete the authentication process.
Args:
redirect_url: The full URL from your browser after authorization
Returns:
Dictionary indicating authentication status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
redirect_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"redirect_url": {
"title": "Redirect Url",
"type": "string"
}
},
"required": [
"redirect_url"
],
"type": "object"
}