Originally created by @nneul on GitHub (Jan 22, 2016).
result="$(signed_request "${challenge_uri}" '{"resource": "challenge", "keyAuthorization": "'"${keyauth}"'"}')"
status="$(printf '%s\n' "${result}" | get_json_string_value status)"
while [[ "${status}" = "pending" ]]; do
sleep 1
status="$(http_request get "${challenge_uri}" | get_json_string_value status)"
done
Would be nice if the full response would be saved in both the request and status inquiry and displayed if a failure occurs.
Originally created by @nneul on GitHub (Jan 22, 2016).
```
result="$(signed_request "${challenge_uri}" '{"resource": "challenge", "keyAuthorization": "'"${keyauth}"'"}')"
status="$(printf '%s\n' "${result}" | get_json_string_value status)"
while [[ "${status}" = "pending" ]]; do
sleep 1
status="$(http_request get "${challenge_uri}" | get_json_string_value status)"
done
```
Would be nice if the full response would be saved in both the request and status inquiry and displayed if a failure occurs.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @nneul on GitHub (Jan 22, 2016).
Would be nice if the full response would be saved in both the request and status inquiry and displayed if a failure occurs.
@nneul commented on GitHub (Jan 22, 2016):
#103