Post ID token to Central

This commit is contained in:
Grant Limberg 2021-12-03 09:57:39 -08:00
parent 8966002685
commit 7a8c89be9d
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A
4 changed files with 223 additions and 50 deletions

View file

@ -210,7 +210,7 @@ pub extern "C" fn zeroidc_get_url_param_value(param: *const c_char, path: *const
let url = "http://localhost:9993".to_string() + path;
let url = Url::parse(&url).unwrap();
let mut pairs = url.query_pairs();
let pairs = url.query_pairs();
for p in pairs {
if p.0 == param {
let s = CString::new(p.1.into_owned()).unwrap();