- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Where can I find Java "CLIENT API documentation" for making calls to AMIS REST calls
I am basically making calls to AMIS servers REST API to create USER , Change PIN etc, The transaction is XML , but RSA client side Java API that makes XML transparent to the developer . I need a API doc for this so I can know the functionality
Have this sample code from RSA , I need a API doc
public static void main(String[] args) {
String amisUrl = "http://10.100.89.164:8080/am8";
String authUrl = "http://10.100.89.164:8080/auth";
String userId = "ssp164bind";
String passcode = "abcd1234";
String targetUserID = "sdoyle";
try {
AuthClient auth_client = new AuthClient(authUrl);
AuthenticationResult auth = auth_client.authenticate(userId, passcode);
if (auth.getAuthenticated() == true )
{
String authToken = auth.getAuthenticationToken().toString();
AMISClient client = new AMISClient(amisUrl);
UserSearchResults info = client.getUserInfo(targetUserID, authToken);
System.out.println("First Name: " + info.getResults().get(0).getFirstName());
System.out.println("Last Name: " + info.getResults().get(0).getLastName());
TokenSearchResults tokens = client.getUserTokenNumbers(targetUserID, authToken);
for(TokenSearchResultItem item : tokens.getResults())
{
System.out.println("Token: " + item.getTokenSN());
client.clearPin(item.getTokenSN(), authToken);
System.out.println("Pin cleared");
}
}
} catch(Exception ex)
{
System.out.println(ex);
}
}
- Tags:
- Community Thread
- Discussion
- documentation client java api
- Forum Thread
- RSA SecurID
- RSA SecurID Access
- SecurID
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
wNrdwca0qblkJKlNv2NSSUgnOgOPi9VxCKtBk5iX3nU=,
My apologies for taking so long to reply to your question. I've moved it from the https://community.rsa.com/community/products/access-manager?sr=search&searchId=8ef6d68a-1efe-4187-bea2-a778f5b92f53&searchIndex=0 space to the https://community.rsa.com/community/products/securid?sr=search&searchId=ea6e4522-6894-4d40-b1f0-94a71833e9f7&searchIndex=0 space since it is about AMIS and related REST API.
Please let me know if you still have questions on this that we can help you answer.
Regards,
Erica
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May i know the link from where you got this code ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The Auth Manager API docs are on the extras iso, the current version is 8.3 so that would be rsa-am-extras-8.3.0.0.0.iso. You can find this extras iso in the same location where you download the full versions of 8.3.
Developer Guide and RSA Authentication Manager SDK are the relevant sections.
