Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
iamsushmachowdary opened this issue Sep 21, 2017 · 0 comments
Open

Comments

@iamsushmachowdary
Copy link

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"}}'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant