VisionClient
Develop a client that is convenient for users to use the relevant APIs.
Response Syntax
client = VisionClient("galaxy_access_key", "galaxy_key_secret", method="POST", https_enable=False)
Parameters
galaxy_access_key: String, required.
User's access_key_id
. This is the only indication of the identity of the user (program), which can be made to the public.
galaxy_key_secret: String, required
User's galaxy_key_secret
. This is a private string used to sign for user requests. It is only known by the user and the server, and must be kept strictly confidential.
kwargs : dict, optional
Listed below are some other requirements for users when creating client:
Method: String, optional. The method to request must be either "POST" or "GET". The default is "POST".
https_enable: bool,optional, To enable Https, it must be either True of False. The default is False.
Return Type
VisionClient Class Object