Page Properties |
---|
|
Status | Status |
---|
colour | YellowGreen |
---|
title | for reviewapproved |
---|
|
|
---|
Approver | Nadzeya Karaban |
---|
|
When using Using this method, you don’t need to care about handling the analysis process with the Gini Bank API Library, you only need to provide your API credentials and a delegate to get the analysis results.
Code Block |
---|
|
let viewController = GiniCapture.viewController(withClient: client,
configuration: giniConfiguration,
resultsDelegate: resultsDelegate)
present(viewController, animated: true, completion:nil) |
If you want to use a transparent proxy with your own authentication, specify your own domain and add AlternativeTokenSource
protocol implementation:
Code Block |
---|
|
let viewController = GiniCapture.viewController(withClient: client,
configuration: configuration,
resultsDelegate: resultsDelegate,
api: .custom(domain: "api.custom.net",
tokenSource: MyAlternativeTokenSource)) |
The token you provide is added as a bearer token to all api.custom.net
requests.
You can also specify a custom path segment if your proxy URL requires it:
Code Block |
---|
|
let viewController = GiniCapture.viewController(withClient: client,
configuration: configuration,
resultsDelegate: resultsDelegate,
api: .custom(domain: "api.custom.net",
path: "/custom/path",
tokenSource: MyAlternativeTokenSource)) |
Rw pagetree macro |
---|
title | See more: |
---|
rootPage | @current |
---|
|