02-18-2011 11:40 AM
Do you know if there are there any apps in the App World currently, or available elsewhere, which use this SDK (this version) successfully? I would like the opportunity to try running another app using this SDK on our devices.
Thanks.
02-18-2011 04:12 PM
we have one, but it's in development right now and private. This version 0.3.5 is quite fresh so I guess it would be difficult to find the appropriate app.
02-18-2011 05:38 PM
Hi All,
Thanks for the suggestions, but it seems to be the OS's fault, I changed my simulator to 9800 and the facebook SDK worked just fine and showed me a login screen, but somehow using ATT's 9700 simulator (and the actual phone) I got connected to www.facebook.com:443/connect ![]()
Can anyone for RIM look at this? is this a problem with BrowserField in OS5.0?
Thanks!
02-21-2011 05:14 PM
Hello, hope you don't mind I talk in this forum while I am from Android community but I searched for this failing URL... Some (at least one
) ... Android device has very similar problem, which is described here: http://bugs.developers.facebook.net/show_bug.cgi?i
So I think it is about the same issue with this particular implementation of http client on your device. The only one who can solve this is Facebook.
Maybe it would help if you, BlackBerry developers, would vote up this issue too?
02-21-2011 05:49 PM
@eliskah:
Thanks a lot! yeah I was wondering why it worked OK in torch but does not work at all in Bold...I guess blackberry browser is really bad
seems like I need to abandon the idea of connecting to facebook now...
02-24-2011 02:01 AM
Hi All
I am also facing the same problem on Bold. I had tried my application on Strom 5.0, Bold 5.0.0.330 and Bold 6.0 (older version).
My app is behaving as expected only on Strom, but not on other two devices. Is this related to touch- nontouch device type?
Please help me... the oAUth URL is >> http://www.facebook.com/dialog/oauth?scope=publish
Thanks in advance !
02-24-2011 10:32 AM
@rucha_mungre -- Which same problem are you facing?
02-24-2011 11:45 PM
Hi
i got the latest release of BlackBerry facebook sdk 0.3.5. it is working fine on strom device, but getting aproblem to run the same code on BOLD it is not working on bold.
Can somebody help me to solve this issue??
Thanks in advance
02-25-2011 12:09 AM
Hi Spacemanaki,
Thanks for your reply.
When i install my app (in which I had used FB blackberry api 0.3.5 ) on my storm and bold device (both devices has OS 5.0), FB part is working fine on Strom but getting an error on Bold.
On BOLD - I am able to get FB Login screen, but when I click login button, it throws me an error
Error is -
Error navigating to :
<URL>
Stream Closed
I am not having BIS service and making connection through WI-FI.
Looking forward to get some help ...
Thanks,
-Rucha
02-25-2011 12:57 PM
To anyone who happens to find this thread and has the same problem that I had, David Lim provided a possible solution to the issue I described here:
The solution below did work for me, so if someone else has the same problem they may want to try this.
Change the code in the BrowserScreen class to disallow BIS:
int[] preferredTransportTypes = { TransportInfo.TRANSPORT_TCP_WIFI, TransportInfo.TRANSPORT_TCP_CELLULAR, TransportInfo.TRANSPORT_WAP2 };
int[] disallowedTransportTypes = { TransportInfo.TRANSPORT_BIS_B, TransportInfo.TRANSPORT_MDS, TransportInfo.TRANSPORT_WAP };
ConnectionFactory cf = new ConnectionFactory();
cf.setPreferredTransportTypes(preferredTransportTy pes);
cf.setDisallowedTransportTypes(disallowedTransport Types);
...
bfc.setProperty(BrowserFieldConfig.CONNECTION_FACT ORY, cf);Note that this only applies to the problem in the post I made, linked above. If you have a different problem, you probably don't want to do this.