I want to add entries to my RESTful Rails blog using HTTP POST requests. I have a script that does this easily enough, but it only works for my development app because I don't require it to authenticate.
Now that I'm publishing my site, I obviously need to authenticate my uploads before posting them. The rest of the admin stuff is behind filters that check for OpenId authentication.
The problem: OpenId doesn't seem to lend itself to non-GUI authentication. Maybe I'm missing something.
Is there a way to authenticate my POST request via OpenId?