You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To use this library (or a script based on it) with a proxy server, set environment variables with the address of the proxy:
31
+
32
+
export HTTP_PROXY='http://10.10.10.10:8000'
33
+
export HTTPS_PROXY='http://10.10.10.10:1212'
34
+
19
35
## Use in your applications
20
36
21
37
Import VeracodeAPI or one of the individual API classes into your code and call the methods. Most methods return JSON or XML depending on the underlying API.
@@ -28,11 +44,6 @@ For detailed documentation on the available methods, please see the [veracode-ap
28
44
29
45
## Notes
30
46
31
-
1. Different API calls require different roles. Consult the [Veracode Docs](https://docs.veracode.com/r/c_role_permissions).
47
+
1. Different API calls require different roles or permissions. Consult the [Veracode Docs](https://docs.veracode.com/r/c_role_permissions).
32
48
2. This library does not include a complete set of Veracode API methods. In particular, it only provides a handful of XML API methods.
33
-
3. To use this library (or a script based on it) with a proxy server, you can set environment variables with the addresses of the proxies:
34
-
35
-
-`export HTTP_PROXY='http://10.10.10.10:8000'`
36
-
-`export HTTPS_PROXY='http://10.10.10.10:1212'`
37
-
38
-
4. Contributions are welcome. See the [Contributions guidelines](CONTRIBUTING.md).
49
+
3. Contributions are welcome. See the [Contributions guidelines](CONTRIBUTING.md).
0 commit comments