dns validation status retrieval discards all detail but 'invalid' #42

Closed
opened 2025-12-29 00:23:05 +01:00 by adam · 1 comment
Owner

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.
adam closed this issue 2025-12-29 00:23:06 +01:00
Author
Owner

@nneul commented on GitHub (Jan 22, 2016):

#103

@nneul commented on GitHub (Jan 22, 2016): #103
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/dehydrated#42