I am trying to integrate my Watson Assistant to BOX. I tried to use boxsdk in my Cloud Function Action. But it gives me exception - No module named 'boxsdk'
Has anyone tried integrating BOX with Watson Assistant or tried using the API's in cloud functions? Is this possible?
It works fine if I try on my local deployment or using Online Python
Here's a simple code snippet -
import sys
import boxsdk
def main(dict):
return { 'message': 'Hello world' }