Difference between revisions of "Updox HMAC Authentication2"

From Updox API
Jump to: navigation, search
 
Line 20: Line 20:
 
     }
 
     }
 
  }
 
  }
the HMAC  to-be-hashed message  is defined as: [vendorId]:[vendorPassword]:[accountId]:[updox-timestamp]
+
the HMAC  to-be-hashed message  is defined as: [vendorId]:[vendorPassword]:'''[accountId]:'''[updox-timestamp]
  
  
Line 32: Line 32:
 
     }
 
     }
 
  }
 
  }
the HMAC  to-be-hashed message  is defined as: [vendorId]:[vendorPassword]:[accountId]:[userId]:[updox-timestamp]
+
the HMAC  to-be-hashed message  is defined as: [vendorId]:[vendorPassword]:'''[accountId]:[userId]:'''[updox-timestamp]

Latest revision as of 17:32, 17 January 2014

For

{
    "auth": {
        "applicationId": "updox",
        "applicationPassword": "password",
        "accountId": "",
        "userId": ""
    }
}

the HMAC to-be-hashed message is defined as: [vendorId]:[vendorPassword]:[updox-timestamp]


{
    "auth": {
        "applicationId": "updox",
        "applicationPassword": "password",
        "accountId": "100",
        "userId": ""
    }
}

the HMAC to-be-hashed message is defined as: [vendorId]:[vendorPassword]:[accountId]:[updox-timestamp]


{
    "auth": {
        "applicationId": "updox",
        "applicationPassword": "password",
        "accountId": "100",
        "userId": "100"
    }
}

the HMAC to-be-hashed message is defined as: [vendorId]:[vendorPassword]:[accountId]:[userId]:[updox-timestamp]