outside the Frapi tester. Even from a php file or from IOS, I can't
quite figure out the header. I guess I'm looking to see exactly what
example. I will try your curl code, but if you have any examples of
On Mar 22, 12:13 am, Clay Hinson <
clayhin...@gmail.com> wrote:
> Brian,
>
> I haven't found any REST clients for Chrome that properly handle Digest
> authentication - they simply return the 401 response. It may be that the
> Chrome plugin framework doesn't allow for this, but I'm not sure.
>
> However, in Firefox the 'REST client for Firefox' extension works well, and
> handles the Digest authentication via the standard authentication dialog.
>
> Alternatively, you can use cURL on the command line and specify digest auth
> (with -v to see the entire transaction):
>
> curl -X POST -v \
> --digest -u <your-frapi-user>:<your-frapi-api-key> \
> -H "Content-Type:application/json" \
> -d '{"param":"value"}' \
http://api.frapi/action
>
> Hope that helps!
> Clay
>
> On Thu, Mar 22, 2012 at 12:38 AM, Brian Sarsany