There are two ways to solve callbacks on mobile devices. The first is to set the oauth_callback value to "oob". This is done if your device cannot receive callbacks. See OAuth Specification, Section 2.1:
Temporary Credentials
Using "oob" should force the server (Netflix) to display a verification code, which the user then enters into your application to authorize the request token.
The second way, if your device supports it, is to use a custom URI scheme. I know that on iPhones you can register a callback using the special scheme assigned to your application. Is there any way to do this on a BlackBerry? If so, I would use this approach, since it is much better used.
source share