dialogflow-python-client icon indicating copy to clipboard operation
dialogflow-python-client copied to clipboard

Getting an invalid token access [404:ERROR] for test example

Open iamsushmachowdary opened this issue 8 years ago • 0 comments
trafficstars

Hi there,

There is a weird response behavior that i could't understand, when i try to send a client access token that does not matches with any of my custom intents, i get the following error

import os.path import sys

try: import apiai except ImportError: sys.path.append(os.path.join(os.path.dirname(os.path.realpath(file)), os.pardir)) import apiai

CLIENT_ACCESS_TOKEN = 'EAACbVYVA6zcBALOf6UlyEuS8vVTZCPVxHHbBZCZCkVkZA26OZAJMgWERZBF8ldKpRFVTD9A0LnP6zDNRVPlgWJetCkldZAYEJTqpZCP8iVPCMPXBbGsFZBtZBZCUaaMhKAS8FQtZBUnwc5sCq8ZAKn55gfbjTAUF9Bj3kzfirMNeq3g3wAAz5feWL1nAE'

def main(): ai = apiai.ApiAI(CLIENT_ACCESS_TOKEN)

request = ai.text_request()

request.lang = 'de'  # optional, default value equal 'en'

request.session_id = "170791610149687"

request.query = "Hello"

response = request.getresponse()

print(response.read())

if name == 'main': main()

the error is as follows

b'{"status":{"code":401,"errorType":"unauthorized","errorDetails":"You are not authorized for this operation. Invalid access token: EAACbVYVA6zcBALOf6UlyEuS8vVTZCPVxHHbBZCZCkVkZA26OZAJMgWERZBF8ldKpRFVTD9A0LnP6zDNRVPlgWJetCkldZAYEJTqpZCP8iVPCMPXBbGsFZBtZBZCUaaMhKAS8FQtZBUnwc5sCq8ZAKn55gfbjTAUF9Bj3kzfirMNeq3g3wAAz5feWL1nAE"}}'

iamsushmachowdary avatar Sep 21 '17 14:09 iamsushmachowdary