Search Results

2
votes

Web Service Authentication using OpenID

I agree completely that what you want is OAuth; I say that having worked on both OAuth and OpenID systems. I've also been in your boat a few times, having to develop a REST web service api. …
0
votes

How can an authentication key be passed to a restful web service?

If time isn't an issue implementing OAuth security may be useful. OAuth uses a public key, and also a secret. The mess is hashed (in most cases) and the server will use the public key + it's copy o …
1
vote

How can I verify a Google authentication API access token?

Maybe you should be using Google's OpenId api, not OAuth? OAuth is for making requests to a specific vendors (Google in this case) web API. You shouldn't hijack Googles OAuth tokens for use on anot …