BlackBerry facebook connect and chat

I would like to connect using facebook connect and chat friends in facebook

How it's done?

give me the code

Get the code at the bottom of the link,

http://www.Baskoro.Web.ID/Facebook-connect-BlackBerry-HOWTO.html

This code is written by another developer, please go through this link to forum for copyright etc information,

http://Forum.developers.Facebook.NET/viewtopic.php?PID=214188

Thank you

Google before post message

Tags: BlackBerry Developers

Similar Questions

  • BlackBerry network connectivity

    Hello

    I have problems intermittent attempt to download data in JSON format using http. I understand, much has been written about this issue, but anyone who has used below class to connect to HTTP?

    http://www.sameernafdey.com/2009/08/HTTPConnection-over-bis-WAP-10-11-WAP.html

    I tried above class for formatting my URL and it seems to help a little, because connections are not to be allowed to fall as well.

    Here are the class-

    /**
    * NetworkUtils.java
    *
    * Note: This class is not originally written by myself. It is rather a
    * updated the version of the open source of the alias of the application
    * NetworkDiagnosticTool provided by RIM. Feel free to edit and use this
    source code, but at your own risk. As I'm not the original author of this code,
    * I'm not responsible for any problems if you use this source code.
    *
    * References:
    * 1. NetworkDiagnostic tool: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800451/800563/What_Is...
    * 2. BlackBerry Technical Knowledge Base: http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/customview.html?func=...
    * 3. BlackBerry Support Forum Post: http://supportforums.blackberry.com/rim/board/message?board.id=java_dev&message.id=29111
    */

    import java.io.EOFException;
    Import net.rim.device.api.servicebook.ServiceBook;
    Import net.rim.device.api.servicebook.ServiceRecord;
    Import net.rim.device.api.synchronization.ConverterUtilities;
    Import net.rim.device.api.system.CoverageInfo;
    Import net.rim.device.api.system.WLANInfo;
    Import net.rim.device.api.util.DataBuffer;

    /**
    * NetworkUtils for Blackberry. This class provides utility functions for formatting
    * URL HTTP and Socket connections in the platform Blackberry RIM who take advantage
    * the ability of the device to connect to the internet using the SDM, BIS, WAP 1.0, 1.1
    * WAP 2.0, unite, WiFi.
    *
    For more information about the options of connectivity etc. Please take a look at the
    * great post in the Blackberry Support Forum here
    Your BlackBerry - http connections and a connection in the world.
    *
    * @author Sameer najar
    * @since August 21, 2009.
    * [email protected]
    */
    public final class NetworkUtils {}

    / * Stores carry ServiceBooks if found. Otherwise, null * /.
    private ServiceRecord srMDS, srBIS, srWAP, srWAP2, srWiFi, srUnite;
    / * Indicators showing the status of each transport coverage * /.
    Private boolean coverageTCP = false, coverageMDS = false, coverageBIS = false, coverageWAP = false, coverageWAP2 = false, coverageWiFi = false, coverageUnite = false;
    /**
    * Applies to WAP1.0 connection only.
    * It is a flag to indicate if the WAP settings should be parsed from the full book.
    * If the user provides any WAP on the InputScreen parameter, this flag is set to false.
    * TODO currently, analysis of service book is not supported.
    */
    Private boolean wapParametersUnavailable = true;
    /**
    * The constant CONFIG_TYPE_ which are used to find appropriate service books.
    * TODO now that single unit is detected in this way.
    */
    private static final int CONFIG_TYPE_WAP = 0;
    private static final int CONFIG_TYPE_BES = 1;
    private static final int CONFIG_TYPE_WIFI = 3;
    private static final int CONFIG_TYPE_BIS = 4;
    private static final int CONFIG_TYPE_WAP2 = 7;
    private static final String UNITE_NAME = "unit";

    public String formatURL (String httpBaseURL) {}
    initializeTransportAvailability();

    /**
    * The rest of this method simply tries to communicate on different transport
    * that are available. For each transport it retries 'attempts' several times if
    * an attempt fails.
    */

    / * WiFi using HTTP * /.
    If (srWiFi! = null & coverageWiFi) {}
    System.out.println ("WiFi (HTTP)" ");
    Return getWiFiURL (httpBaseURL);
    } else {}
    If (srWiFi == null) {}
    System.out.println ("No WiFi service found.");
    }
    If (! coverageWiFi) {}
    System.out.println ("WiFi coverage is not available");
    }
    }

    / * Direct TCP using HTTP * /.
    If {(coverageTCP)
    System.out.println ("Direct TCP (HTTP)" ");
    Return getTCPURL (httpBaseURL);
    }

    / * MDS using HTTP * /.
    If (srMDS! = null & coverageMDS) {}
    System.out.println ("MDS (HTTP)" ");
    Return getMDSURL (httpBaseURL);
    } else {}
    If (srMDS == null) {}
    System.out.println ("No. MDS service records found.");
    }
    If (! coverageMDS) {}
    System.out.println ("coverage of SDM is not available");
    }
    }

    / * Unite using HTTP * /.
    If (srUnite! = null & coverageUnite) {}
    System.out.println ("unit (HTTP)" ");
    Return getUniteURL (httpBaseURL);
    } else {}
    If (srUnite == null) {}
    System.out.println ("No. Unit service records found.");
    }
    If (! coverageUnite) {}
    System.out.println ("unit cover is not available");
    }
    }

    / * BIS-B using HTTP * /.
    If (srBIS! = null & coverageBIS) {}
    System.out.println ("BIS-B (HTTP)" ");
    Return getBISURL (httpBaseURL);
    } else {}
    If (srBIS == null) {}
    System.out.println ("No BIS - B service records found.");
    }
    If (! coverageBIS) {}
    System.out.println ("BIS-B coverage is not available");
    }
    }

    / * WAP1.0 usign HTTP * /.
    getWAPURL (httpBaseURL);
    If (srWAP! = null &! wapParametersUnavailable & coverageWAP) {}
    System.out.println ("WAP (HTTP)" ");
    Return getWAPURL (httpBaseURL);
    } else {}
    If (srWAP == null) {}
    System.out.println ("No WAP service records found.");
    }
    If (! coverageWAP) {}
    System.out.println ("WAP coverage is not available");
    }
    If {(wapParametersUnavailable)
    System.out.println ("enter the WAP settings");
    }
    }

    / * WAP2.0 using HTTP * /.
    If (srWAP2! = null & coverageWAP2) {}
    System.out.println ("WAP2 (HTTP)" ");
    Return getWAP2URL (httpBaseURL);
    } else {}
    If (srWAP2 == null) {}
    System.out.println ("No WAP2 service records found.");
    }
    If (! coverageWAP2) {}
    System.out.println ("WAP2 coverage is not available");
    }
    }

    Return httpBaseURL;
    }

    /**
    * Initializes the ServiceRecord instances for each transport (if available). Otherwise makes null.
    * Also determines if sufficient coverage is available for each transport and sets coverage indicators.
    */
    private void initializeTransportAvailability() {}
    Full book sb = ServiceBook.getSB ();
    Reviews [] ServiceRecord = sb.getRecords ();

    for (int i = 0; i)< records.length;="">
    {
    MyRecord = documents [i] ServiceRecord;
    String cid, uid;

    If (myRecord.isValid () &! myRecord.isDisabled ()) {}
    CID = myRecord.getCid () .toLowerCase ();
    UID = myRecord.getUid () .toLowerCase ();
    BIS
    If (cid.indexOf ("ippp")! = - 1 & uid.indexOf ("gpmds")! = - 1) {}
    srBIS = myRecord;
    }

    BES
    If (cid.indexOf ("ippp")! = - 1 & uid.indexOf ("gpmds") ==-1) {}
    srMDS = myRecord;
    }
    WiFi
    If (cid.indexOf ("wptcp")! = - 1 & uid.indexOf ("wifi")! = - 1) {}
    srWiFi = myRecord;
    }
    Wap1.0
    {If (getConfigType (myRecord) == CONFIG_TYPE_WAP & {cid.equalsIgnoreCase ("wap"))}
    srWAP = myRecord;
    }
    Wap2.0
    If (cid.indexOf ("wptcp")! = - 1 & uid.indexOf ("wifi") ==-1 & uid.indexOf ("mms") ==-1) {}
    srWAP2 = myRecord;
    }
    Unite
    {If (getConfigType (myRecord) == CONFIG_TYPE_BES & {myRecord.getName () .equals (UNITE_NAME))}
    srUnite = myRecord;
    }
    }
    }
    If (CoverageInfo.isCoverageSufficient (CoverageInfo.COVERAGE_BIS_B)) {}
    coverageBIS = true;
    System.out.println ("State of coverage: BIS-B - online").
    }
    If (CoverageInfo.isCoverageSufficient (CoverageInfo.COVERAGE_DIRECT)) {}
    coverageTCP = true;
    System.out.println ("State of coverage: COVERAGE_DIRECT - online").
    coverageWAP = true;
    System.out.println ("State of coverage: WAP 1.0, 1.1 - online").
    coverageWAP2 = true;
    System.out.println ("State of coverage: WAP 2.0 - online").
    }
    If (CoverageInfo.isCoverageSufficient (CoverageInfo.COVERAGE_MDS)) {}
    coverageMDS = true;
    System.out.println ("State of coverage: MDS - online").
    coverageUnite = true;
    System.out.println ("State of coverage: unit - online").
    }

    If (WLANInfo.getWLANState () == WLANInfo.WLAN_STATE_CONNECTED) {}
    coverageWiFi = true;
    System.out.println ("State of coverage: Wifi - online").
    }
    }

    /**
    * Gets the type of a ServiceRecord config with getDataInt below
    @param record A ServiceRecord
    * @return the ServiceRecord configType
    */
    private int getConfigType (file ServiceRecord) {}
    return getDataInt (balance, 12);
    }

    /**
    * Gets the type of a ServiceRecord config. From 12 as a type returns the configType.
    @param record A ServiceRecord
    @param type dataType
    * @return configType
    */
    private int getDataInt (ServiceRecord Records, int type) {}
    DataBuffer buffer = null;
    buffer = getDataBuffer (type of record),

    If (buffer! = null) {}
    try {}
    Return ConverterUtilities.readInt (buffer);
    } catch (EOFException e) {}
    Returns - 1;
    }
    }
    Returns - 1;
    }

    /**
    * Utility method to getDataInt()
    */
    private DataBuffer getDataBuffer (ServiceRecord Records, int type) {}
    data Byte [] = record.getApplicationData ();
    If (data! = null) {}
    DataBuffer buffer = new DataBuffer (data, 0, data.length, true);
    try {}
    buffer.readByte ();
    } catch (EOFException e1) {}
    Returns a null value.
    }
    If {(ConverterUtilities.findType (buffer, type))
    return the buffer;
    }
    }
    Returns a null value.
    }

    /**
    Construction of a direct url TCP of the baseURL supplied by the user
    * @return A url with direct TCP settings
    */
    private String getTCPURL (String baseURL) {}
    String url = baseURL + "; deviceside = true;
    String AFN = ""; inputs.getEfTcpAPN ();
    String username = ""; inputs.getEfTcpAPNUser ();
    String password = ""; inputs.getEfTcpAPNPassword ();
    If (apn.length () > 0) {}
    URL += '; APN ="+ AFN;
    }
    If (username.length () > 0) {}
    URL += '; TunnelAuthUsername ="+ username;
    }
    If (password.length () > 0) {}
    URL += '; TunnelAuthPassword ="+ password;
    }
    Back to url;
    }

    /**
    Construction of a url MDS of the baseURL supplied by the user
    * @return A url with parameters MDS
    */
    private String getMDSURL (String baseURL) {}
    return baseURL + '; deviceside = false;
    }

    /**
    Construction of a url of the unity of the baseURL supplied by the user
    * @return A url with the parameters of the unit
    */
    private String getUniteURL (String baseURL) {}
    return baseURL + '; deviceside = false' + ";". " ConnectionUID ="+ srUnite.getUid ();
    }

    /**
    Construction of a url BIS-B of the baseURL supplied by the user
    * @return A url with parameters BIS-B
    */
    private String getBISURL (String baseURL) {}
    return baseURL + '; deviceside = false; Not implemented since it is only available for RIM ISV partners
    }

    /**
    Construction of a url the baseURL user-provided WAP2.0
    * @return A url with parameters WAP2.0
    */
    private String getWAP2URL (String baseURL) {}
    return baseURL + '; deviceside = true' + ";". " ConnectionUID ="+ srWAP2.getUid ();
    }

    /**
    Construction of a url the baseURL user-provided WiFi
    * @return A url with WiFi settings
    */
    private String getWiFiURL (String baseURL) {}
    return baseURL + '; interface = wifi. "
    }

    /**
    Construction of a WAP1.0 url from the baseURL supplied by the user
    * @return A url with parameters WAP1.0
    */
    private String getWAPURL (String baseURL) {}
    String url = baseURL + "; deviceside = true;
    String gatewayIP = ""; inputs.getEfWapGatewayIP ();
    String gatewayAPN = ""; inputs.getEfWapGatewayAPN ();
    String gatewayPort = ""; inputs.getEfWapGatewayPort ();
    String sourceIP = ""; inputs.getEfWapSourceIP ();
    SourcePort string = ""; inputs.getEfWapSourcePort ();
    String username = ""; inputs.getEfWapUser ();
    String password = ""; inputs.getEfWapPassword ();
    If (gatewayIP.length () > 0) {}
    URL = url + ";". " WapGatewayIP =' + gatewayIP;
    wapParametersUnavailable = false;
    }
    If (gatewayAPN.length () > 0) {}
    URL = url + ";". " WapGatewayAPN ="+ gatewayAPN;
    wapParametersUnavailable = false;
    }
    If (gatewayPort.length () > 0) {}
    URL = url + ";". " WapGatewayPort ="+ gatewayPort;
    wapParametersUnavailable = false;
    }
    If (sourceIP.length () > 0) {}
    URL = url + ";". " WapSourceIP =' + sourceIP;
    wapParametersUnavailable = false;
    }
    If (sourcePort.length () > 0) {}
    URL = url + ";". " WapSourcePort =' + sourcePort;
    wapParametersUnavailable = false;
    }
    If (username.length () > 0) {}
    URL = url + ";". " TunnelAuthUsername ="+ username;
    wapParametersUnavailable = false;
    }
    If (password.length () > 0) {}
    URL = url + ";". " TunnelAuthPassword ="+ password;
    wapParametersUnavailable = false;
    }
    /*
    If (inputs.getCfWapEnableWTLS ()) {}
    URL = url + ";". " WapEnableWTLS = true;
    wapParametersUnavailable = false;
    }*/
    If (wapParametersUnavailable & srWAP! = null) {}
    Back to url;
    } / * Not implemented * /.
    else {}
    Back to url;
    }
    }
    }

    the code creates 'only' the correct one to use connection suffix, it does not take care to use them or close the connection.
    Maybe your code does not correctly clean on the rise?

  • Unable to connect with facebook (impossible to chat with FB friends)

    Hello

    I am unable to Chat with my facebook friend with my Skype, Previouslly I'm able to chat with my friends on facebook.

    Please understand this.

    I need to chat with my friend facebook with Skype (Correct)

    I'm not asking to chat with my facebook friend who happens in Skype (Incorrect)

    Hope you understand what I'm looking for?

    I tried all the possible solution given mention in this three threads:

    1. http://community.skype.com/t5/Windows-desktop-client/Facebook-connection-issues/td-p/1962633

    2. http://community.skype.com/t5/Mac/Skype-is-not-showing-online-Facebook-friends-version-5-5-0-2069/td...

    3. http://community.skype.com/t5/Windows-desktop-client/unable-to-connect-to-facebook-chat/m-p/4085274#...

    but I am unable to solve this problem. My facebook friends don't no projection in Skype and I'm using the latest version of Skype (http://prntscr.com/9dcn3d) .

    Same 'Facebook' is missing from the list of contacts: http://prntscr.com/9d2rey and also the http://prntscr.com/9d2rni discussion list

    About 3 months before I'm able to talk with my friend from facebook using my Skype and even if I am able to make the video call with them.

    I don't know what is happening, all of a sudden the features is missing from my Skype, this is really very important for me, I beg you to anyone if know the solution please answer on the subject with the solution.

    I think that Skype or Facebook removed that feature or maybe it's the bug. If this is a bug fix it please, if it is officially removed I asked please add to new most of the people looking for this.

    http://community.Skype.com/T5/Windows-desktop-client/Facebook-connection-issues/m-p/4222412#M389968

  • I am not able to connect to my facebook account and the error message reads "this website does not provide information on property." Help, please

    I am not able to connect to my facebook account and the error message reads "this website does not provide information on property." Help, please

    only title bar opens and nothing else... Please help

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Also check the cookie exceptions.

  • SE connect Blackberry 10 Simulator and BBM works does not in the Simulator

    Hi all

    I use QNX momentics IDE for development and blackberry 10 Simulator.

    I use the simulator using VMWare workstation. A problem that occurs is that my Simulator is impossible to connect to BBM. Although the Internet is there on Simulator (checked with the browser on Simulator). As far as newspapers are concerned in the case of the blackberry simulators 9900 and 9930 counted out newspapers and event logs.

    But in this Blackberry 10 Simulator, I could not find newspapers where they are generated.

    Please tell me the location where in 10 blackberry Simulator logs are generated.

    Thank you best regards &,.

    Tushar

    for newspapers, check out this link

    http://supportforums.BlackBerry.com/T5/native-development-knowledge/debug-on-the-device-with-console...

    Please mark as solution if it helps

  • BlackBerry software mixing and Issues resolutions, I've found. (Mix &amp; link does not then BBID connection errors)

    I spent a good amount of time a problem resolved with the latest version of the link & Blend (Setup file: BlackBerryDesktopSoftware_B98.exe) and I wanted to share my findings in case someone else is having similar problems.

    I have already installed 1.2.3.56 link and it worked fine with my Q10, I used it for access to remote files, sync and backup and everything worked perfectly.  BBID was able to manage a disconnect, connect to the application without problem.  When the passport was released I had planned to make one, so I tried to upgrade to the latest version of link being bundled with the installer of mixture.  That's where all my problems started...

    After numerous installs / uninstalls the best I could muster with the new version was a mixture executable that would end itself quietly (no paper anywhere) in the second run.  Only way to really see in taskmanager was to select in the browser and press the Enter key (this he launched hundreds of times, I was doing this while using the process monitor to see if a log file has been generated anywhere, I didn't expect that it remains running) in addition the link sat at its screen for a LONG time , and when he finally start step 2/3 has never worked.  This is the step where you enter your credentials BBID and it records the link your account BBID, whenever I came to this page, that he had a yellow triangle and a button 'Retry' which obviously did not help much.

    The link always took to connect is because PeerManager.exe had the same problem that Blend.exe did, he would go for<1 second="" and="" then="" terminate="" quietly="" on="" it's="" own="" with="" no="" logs="" of="" any="" kind. ="" when="" link="" is="" started="" and="" running="" you="" should="" see="" the="" peermanager.exe="" process="" running="" in="" your="" task="" manager,="" and="" of="" course="" it="" woudn't="" stay="" running="" for="">

    I had the debuggers and IDA to take a look at what was going on and what I found I hope it will help someone without having to make all the steps of this.  For what it's worth I've also call in support BlackBerry when I get my passport and to inform them of the issue, I came across.

    The short end of history / TLDR. I had to do 2 things to get this version of Blend / link not working for me: create a white 'openssl.cnf' file on my hard drive and point to it with the environment variable "OPENSSL_CONF".  Second question was about a value in "HKEY_CURRENT_USER\Software\Research In Motion" that he did not, I removed this entire key during a re - install, and now the BBID authentication page correctly.

    I'll add some additional notes on what I found in the next post...

    If someone is curious about what I found while debugging, this is what lead me to the library & it is OpenSSL configuration problem...

    While I was debugging, I changed a routine jump and was able to get executables to start.  The PeerManager.exe and the necessary mixture changes the code runs successfully. (suspicious code block was in the mix file libeay32.dll PeerManager.exe with link/Blend)

    Looking at these two very similar code blocks shown a string of text before the jump to 'leave' called, showing that the code path that displays the text string "Automatic Configuration failed." called when an error occurred.  Interestingly enough it is then the functions available are currently walked initterm (an internal function in MSVCRT100.dll) and if the executable is never a chance to sign anything before this happens.

    Seeing that I had a similar error message in both applications indicated that it was a common library that has been compiled with both applications.  So I went to google to find pages associated with this error message...  Looks like this is a common problem with libraries and compiling of data, but I was focused on how to work around the problem and I finally tried one of the hotfixes sugguested I found.   Here's an old bug report on OpenSSL which indicates it might be a problem with the availability of openssl.cnf and is:

    https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=584911

    With the above information, I went to my system properties and set a System Variable, named "OPENSSL_CONF" and a value of "C:\openssl.cnf".  I then went to a dos prompt and make an empty file to this location using "COPY CON C:\openssl.cnf" (on the first line, I just recorded it with CTRL + Z) I then restored the binary no patches and low and behold, they worked very well!  Blend.exe started well to the top and Peermanager.exe were also still works just fine.  I couldn't BBID authentication window to come yet, but applications take at least now on my device and they actually open and created newspapers.

    MIX OF NOTES:

    Work with mixture problems not starting not leads believe me it is a problem compiling.  If I replace the OpenSSL library, it comes with (libeay32.dll and ssleay32.dll), with their installation package 1.0.1i binaries 'lite', Blend.exe starts fine.  Peermanager.exe can be fixed as well as libraries are statically compiled in this application.  Libraries have been restored for versions supplied with mixture once the environment variable has been confirmed for the problem.

    Auth BBID question:

    It was relatively easy to solve compared to the above question... Finally, there's something in my registry that has not been analyzed correctly as in 'Desktop.log' I found this article: ' | ERROR | 1. Rim.Desktop.Shell | 0 | Error to access the valid bbidprincipals. "I have exported and deleted everything under the 'HKEY_CURRENT_USER\Software\Research In Motion' key, restarted and voila!  I have now received a login for BBID.  Don't know which key it was that I didn't go back and add in each of the values I exported, but there was something in there, he did not like...

    Now I just need to see that this information back to the BlackBerry support group and eventually the Group of desktop software so that they make use.  When the Passport arrives I'll make sure to make a support call and get connected with them.  If anyone has any information to help get to the right people, let me know and I'll push it along.

    Otherwise, if this can help someone, give a post here so that we know that you are affected by this problem as well!  I still don't know which is more precisely on my system that requires him to need this empty openssl.cnf file.  A test VM, I installed it on had not and it works very well, so there is something else in my environment that causes this.

  • BlackBerry smartphones "Blackberry App World is had problems to connect to the server Blackberry App World. "Check your network connections, and then try again.

    Whenever I try to access an application, appworld is a site of the company that send me to appworld I get this error.
    "Blackberry App World is had problems connecting to the server Blackberry App World. "Check your network connections, and then try again.

    I have loaded the bb appworld re have the latest version for my new bb bold 9900, but still the error and then lock up. Power off, and get a message that I had an unknown error.

    People have had this problem since 2010. I never had this problem with my flashlight or my 9000 "BOLD".
    Anyone know what is happening? I also have the latest OS on my 9900.

    Found a solution! Laughing out loud! How delayed. I changed my email in bb code. For example, after changing from one gmail to another account, I changed it back and baaammmm! Problem solved, but do not know why it should be a problem in the first place right?

    Good luck to you guys who do not have the possibility of returning to another email.

  • BlackBerry Smartphones BlackBerry Internet Service and Blackberry Enterprise server: not connected

    Hello!

    I am currently a user of the Blackberry Curve 8520 and my carrier is FONIC Germany. After trying a few applications, such as the blackberry Messenger or blackberry app World and my email accounts, I discovered that none of them have worked, although the internet explore normal worked as usual.

    After doing some research, I spotted the problem:

    BlackBerry Internet Service: not connected

    BlackBerry Enterprise Server: not connected

    After calling my provider, they told me that they are unable to connect to the Blackberry Internet Service... They had really no idea what I was talking!

    Is there anyway that I can connect my Blackberry to the service without the intercession of my career?

    Thanks in advance!

    Cervezaduff

    The service is provided by your operator, then Yes, the only way to activate your blackberry completely is to change carriers.

  • BlackBerry Facebook App for jump of BlackBerry Messenger

    Hi there... can't find the Facebook Messenger for the JUMP to the world of BlackBerry or the Amazon app store... suggestions...

    Thank you

    I answered your pm... you need not of the Facebook Messenger app, since you can write messages and chat directly from the hub. It is built in.

  • Z10 blackBerry cannot connect with another ID Blackberry on this device

    Hello

    Got a Z10 with my blackberry ID on it for a long time without any problem.

    My wife bought a Blackberry Bold 9900 and instead create a new Blackberry ID, I put mine. She wanted only Facebook on this subject so I didn't create a new ID just for this application.

    Now on my Z10, whenever I try to download a BB world app, get a pop-up with "check your Blackberry ID. I try to enter my password, it says:

    "You can't sign with a different ID of Blackberry on this unit. Connect with the original Blackberry used on this device ID ". But it is certainly the original code.

    I also tried to reset the password, but the problem persists.

    Thanks for any help you can provide,

    Martin

    Well, this isn't quite true.  You can have multiple devices with a BBID.  I have a Z10, Q10 and Playbook.  I added a different Playbook earlier but only Playbook can be connected as the main material for BBWorld.  Other that it worked very well.

    Looks like you are trying to connect to the device even with a different BBID.  If you have already connected to a device with a BBID, you do a security wipe before you can connect with other BBID.

    http://www.BlackBerry.com/BTSC/KB26694

  • BlackBerry Facebook SDK v0.4.5

    Hello

    I try to use the v0.4.5 BlackBerry Facebook SDK available here: https://sourceforge.net/projects/facebook-bb-sdk/

    I can not connect, the API keeps redirecting to the login screen initial Facebook and throwing this exception: "FacebookException: failed to refresh the access token.

    I have the same problems with previous versions v0.3.5 and v0.4.2.

    I experience the same problem with the example of "Strawberry" and with my own implementation.

    I experience the same problem with the Application Test Facebook ID and my own ID Facebook Application.

    I encounter the same problem when connected wireless and Wifi connections. When connected via Wifi to the connection string: "; interface = wifi' is correctly added to the url.

    Please send some tips on what could be causing my inability to connect to Facebook.

    -Thanks, David

    I upgraded the Version BlackBerry OS v5.0.0.449 to v5.0.0.884 (Bundle 1476) Web: http://us.blackberry.com/apps-software/devices/#tab_tab_update.

  • BlackBerry Z10 z10 and help link

    Greetings all long time in love BB, recently bought for the new z10 and here are my problems

    1 drivers moved or not is found for phone

    2 download link and uninstalled and reinstalled several times, cleaned of any enttries to register, I get the error message unalbe to sign in blackberry ID make you that im connected to internet disabled both firewall and antivirus stilll no luck, any help would be greatly appreciated

    Solved CONNECTED COMPUTER ADMINISTRATIVE MODE uninstalled, AS LINK AND ALL RELATED to BLACKBERRY AND WENT through REGISTRY AND DELETED ANY REGISTRY ENTRIES RELATED to BLACKBERRY NEW INSTALLER AND BOOM FACT IT ME NO THANKS you Admin

  • Z3 blackBerry cannot connect blackberry mixture with z3

    last month, I try to connect my device with the bb mix.

    I tried all the information regardting it as light allow connections and all the

    I even have quick cure in my system try disable it but of no use same sound please help me

    Hi @swapnillohar

    Let me know if the following after help > Troubleshooting BlackBerry Blend

    Thank you!

  • Z10 blackBerry cannot connect to games (build platform)

    Since I had BlackBerry Z10 im trying to connect to the games, after starting window... It is display name, then when you click Next it gives error
    (ERROR-HTTP-SERVER-SC)

    Can someone help me on this... How to connect and why its giving this error Server?

    The app 'Games' was part of the Scoreloop service.  Unfortunately, Scoreloop has been closed last December.  There was an announcement about last summer saying that the service stops, and they have achieved with it.

    If only recently, you've got your Z10, then it is likely still has OS 10.2.1.xxxx, which included the games app.  The next month to come - and dependent on your operator - you should get the OS update 10.3.1.  The games app has been removed from this OS.

    So far, there is nothing you can do about it - other that just don't use it, or ignore it when any game tries to start.

  • Need for external to Facebook, Twitter and linked in jar file

    Hi all

    Can someone tell me where I can get the external jar file or SDK for Facebook, Twitter and LinkedIn?

    I use OS 5.0. If any got related package that please send it through '[email protected] '.

    Thank you

    Neeraj Chauhan

    the facebook sdk is available at http://us.blackberry.com/developers/started/facebook.jsp

    for twitter, you can use twitterme with xAuth.
    oAuth also seems possible, see http://supportforums.blackberry.com/t5/Java-Development/twitter-integration/m-p/1345335#M176988 etc.

    don't know any api of the linked in.

    You can also use the search feature to find answers to questions like that.

Maybe you are looking for

  • GPG Add on for firefx?

    Hello y at - it across an add-on to use gpg directly in firefox as the old firegpg add-on? http://de.getfiregpg.org/s/homeIt would be nice to encrypt and decrypt the text directly from firefox. a friend showed me an extension for google chrome and se

  • Keyboard lag on Satellite C660 - 11L (PSCONE) - BIOS v.1.70 problem

    Hi all I have a strange problem with my keyboard for several weeks already. It performs strangely - lag all the time. In each program or Internet site (in different Internet browsers) - characters (any) appears once and the next time don't simply wou

  • Is there a point in time where the old version (eg. VFP 5.0) would become a freely licensed?

    Original title: license for discontinued versions. Is there a point in time where the old version (eg. VFP 5.0) would become a freely licensed?

  • Impossible to change politics vmedia

    I have 2 iso policies of vmedia pointing two vmware (5.5 and 6.0).  When I try to change the strategy of vmedia go in the service profile, sounds like he accepts the change, the new vmedia policy is present after that he sent.  Then if I try to click

  • FDMEE 11.1.2.3 report Check returns empty

    Hi everyone-A problem with our 11.1.2.3.500 FDMEE application where audit reports come back completely empty. Is not only the metadata for checking empty return rule (tiling, under title, the target accounts, rules), but the whole of the report, incl