0

I made a blackberry app which authenticates the user when he logs in but, once you log in you can't log out.

I need a logout button for the blackberry menu button.

I'm using basic authentication in java.

httpConn.setRequestProperty("Authorization", "Basic " + new String(encoded));

The encoded string is the "user:password"
I'm developing this app with the eclipse plugin.
Any ideas, tutorials or code?

Appreciated

Roham Rafii
  • 2,929
  • 7
  • 35
  • 49
rupGo
  • 400
  • 4
  • 17

1 Answers1

1

Check the answer for How to log out user from web site using BASIC authentication?. Same principle applies to mobile apps as well.

Community
  • 1
  • 1
Gorkem Ercan
  • 3,220
  • 1
  • 18
  • 26