Welcome!

Welcome to the Official BlackBerry Support Community Forums. This is your resource to discuss support topics with your peers, and learn from each other. New to the forum? Please visit the ‘Getting Started’ link below.
inside custom component

Java Development

Reply
Contributor
spacemanaki
Posts: 27
Registered: ‎02-04-2011

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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.

Please use plain text.
Developer
sonicboomboy
Posts: 465
Registered: ‎03-04-2009
My Carrier: some

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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.

Got resolved! Press kudo icon!
Please use plain text.
New Contributor
rkidarsa
Posts: 5
Registered: ‎02-17-2011
My Carrier: AT&T

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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 :smileysad:

 

Can anyone for RIM look at this? is this a problem with BrowserField in OS5.0?

 

Thanks!

Please use plain text.
New Member
eliskah
Posts: 1
Registered: ‎02-21-2011

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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:smileysurprised:) ... Android device has very similar problem, which is described here: http://bugs.developers.facebook.net/show_bug.cgi?id=14144

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?

Please use plain text.
New Contributor
rkidarsa
Posts: 5
Registered: ‎02-17-2011
My Carrier: AT&T

Re: new Facebook BlackBerry SDK 0.3.1 is out.

@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 :smileysad: seems like I need to abandon the idea of connecting to facebook now...

Please use plain text.
Contributor
rucha_mungre
Posts: 10
Registered: ‎02-08-2010
My Carrier: T-Mobile

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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_stream,offline_access&redirect_uri=" + pfbc.getNextUrl() + "&response_type=token&display=touch&client_id=" + pfbc.getApplicationId()

 

Thanks in advance !

 

Please use plain text.
Contributor
spacemanaki
Posts: 27
Registered: ‎02-04-2011

Re: new Facebook BlackBerry SDK 0.3.1 is out.

@rucha_mungre -- Which same problem are you facing?

Please use plain text.
New Contributor
AmeyBaisane
Posts: 3
Registered: ‎11-18-2009
My Carrier: Airtel

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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

Please use plain text.
Contributor
rucha_mungre
Posts: 10
Registered: ‎02-08-2010
My Carrier: T-Mobile

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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

Please use plain text.
Contributor
spacemanaki
Posts: 27
Registered: ‎02-04-2011

Re: new Facebook BlackBerry SDK 0.3.1 is out.

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:

http://supportforums.blackberry.com/t5/Java-Development/new-Facebook-BlackBerry-SDK-0-3-1-is-out/m-p...

 

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(preferredTransportTypes);
cf.setDisallowedTransportTypes(disallowedTransportTypes);
...
bfc.setProperty(BrowserFieldConfig.CONNECTION_FACTORY, 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.

 

Please use plain text.