Example #1
0
    def __init__(self, appid, secret_id, secret_key):
        self.VIDEO_FILE_NOT_EXISTS = -1
        self.VIDEO_NETWORK_ERROR = -2
        self.VIDEO_PARAMS_ERROR = -3

        self.EXPIRED_SECONDS = 2592000
        self._secret_id,self._secret_key = secret_id,secret_key
        conf.set_app_info(appid, secret_id, secret_key)
Example #2
0
    def __init__(self, appid, secret_id, secret_key):
        self.IMAGE_FILE_NOT_EXISTS = -1
        self.IMAGE_NETWORK_ERROR = -2
        self.IMAGE_PARAMS_ERROR = -3

        self.EXPIRED_SECONDS = 2592000
        self._secret_id, self._secret_key = secret_id, secret_key
        conf.set_app_info(appid, secret_id, secret_key)
Example #3
0
 def __init__(self, appid, secret_id, secret_key, bucket):
     self.IMAGE_FILE_NOT_EXISTS = -1
     self._secret_id, self._secret_key = secret_id, secret_key
     conf.set_app_info(appid, secret_id, secret_key, bucket)
 def __init__(self, appid, secret_id, secret_key, bucket):
     self.IMAGE_FILE_NOT_EXISTS = -1
     self._secret_id,self._secret_key = secret_id,secret_key
     conf.set_app_info(appid, secret_id, secret_key, bucket)