diff --git a/lib/helpers.php b/lib/helpers.php index a4dc22e..a85cd89 100644 --- a/lib/helpers.php +++ b/lib/helpers.php @@ -99,8 +99,14 @@ function micropub_post($endpoint, $params, $access_token, $file_path = NULL) { curl_setopt($ch, CURLOPT_URL, $endpoint); curl_setopt($ch, CURLOPT_POST, true); + // Send the access token in both the header and post body to support more clients + // https://github.com/aaronpk/Quill/issues/4 + // http://indiewebcamp.com/irc/2015-02-14#t1423955287064 $httpheaders = array('Authorization: Bearer ' . $access_token); - $params = array_merge(array('h' => 'entry'), $params); + $params = array_merge(array( + 'h' => 'entry', + 'access_token' => $access_token + ), $params); if(!$file_path) { $post = http_build_query($params);