Difference between revisions of "Updox HMAC Authentication2"

From Updox API
Jump to: navigation, search
(Created page with "For { "auth": { "applicationId": "updox", "applicationPassword": "password", "accountId": "", "userId": "" } } the HMAC to-be-h...")
 
Line 19: Line 19:
 
     }
 
     }
 
  }
 
  }
the  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 29: Line 29:
 
     }
 
     }
 
  }
 
  }
the  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]

Revision as of 17:30, 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]