Uploaded image for project: 'Shindig'
  1. Shindig
  2. SHINDIG-1394

Gadget SigningFetcher creates invalid oauth_signature

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 2.0.0-RC2
    • PHP
    • None

    Description

      If there are any query parameters in the request the current implementation of the SigningFetcher just concats

      key=param&

      for each parameter to the base string which results in one & too much at the end of the base string.

      Fix:

      Index: php/src/gadgets/SigningFetcher.php
      ===================================================================
      139c139
      < $newQuery = '';

      > $newQueryParts = array();
      143c143
      < $newQuery .= urlencode($key) . '=' . urlencode($param) . '&';

      > $newQueryParts[] = urlencode($key) . '=' . urlencode($param);
      146c146
      < $newQuery .= urlencode($key) . '=' . urlencode($elem) . '&';

      > $newQueryParts[] = urlencode($key) . '=' . urlencode($elem);
      150a151,153
      >
      > $newQuery = implode('&', $newQueryParts);
      >

      Attachments

        Activity

          People

            Unassigned Unassigned
            bhofmann Bastian Hofmann
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: