Commit 879545bf authored by Josh Ji's avatar Josh Ji

idp url

parent 3c872b55
Pipeline #3339 failed with stage
...@@ -169,7 +169,8 @@ public class MakeCredential { ...@@ -169,7 +169,8 @@ public class MakeCredential {
private String askIDP(String hmac, String Cx){ private String askIDP(String hmac, String Cx){
RestTemplate restTemplate = new RestTemplate(); RestTemplate restTemplate = new RestTemplate();
String uri = "http://localhost:8086/api/idp/askIdentity"; String idp_addr = "https://eididp.prlab.io/";
String uri = idp_addr + "api/idp/askIdentity";
HashMap<String, String> map = new HashMap<>(); HashMap<String, String> map = new HashMap<>();
String base64hmac = Base64Util.encodeToString(HexUtil.decode(hmac)); String base64hmac = Base64Util.encodeToString(HexUtil.decode(hmac));
String base64Cx = Base64Util.encodeToString(HexUtil.decode(Cx)); String base64Cx = Base64Util.encodeToString(HexUtil.decode(Cx));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment