function _openid_encode_message

7.x openid.inc _openid_encode_message($message)
6.x openid.inc _openid_encode_message($message)

Encode a message from _openid_create_message for HTTP Post

2 calls to _openid_encode_message()
openid_association in drupal-7.x/modules/openid/openid.module
Attempt to create a shared secret with the OpenID Provider.
openid_verify_assertion in drupal-7.x/modules/openid/openid.module
Attempt to verify the response received from the OpenID Provider.

File

drupal-7.x/modules/openid/openid.inc, line 344
OpenID utility functions.

Code

function _openid_encode_message($message) {
  $encoded_message = '';

  $items = explode("\n", $message);
  foreach ($items as $item) {
    $parts = explode(':', $item, 2);

    if (count($parts) == 2) {
      if ($encoded_message != '') {
        $encoded_message .= '&';
      }
      $encoded_message .= rawurlencode(trim($parts[0])) . '=' . rawurlencode(trim($parts[1]));
    }
  }

  return $encoded_message;
}