Andriod App does not allow log-in via Facebook.

I created my Skype account by linking it to my Facebook account. Unfortunately, the app doesn't allow me to log in via Skype. I use the same name under my account tab etc, yet it doesn't accept it. I'm not sure what else to do.
According to what shoes under my skype name my name is "facebook:XXXXXXX"
However, when I try to log in, it doesn't accept that same user name even though it allows me to sign in on the desk top. I've copied and pasted it and it still doesn't work.
I don't know what else to do here.
Can anyone help?

Hi and welcome to the Skype Community,
Unfortunately logging in to Skype for Android is not supported. You need create a new Skype account to be a able to us it on Android.
Follow the latest Skype Community News
↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

Similar Messages

  • The ipad music app does not allow me to play certain tracks that i have synced via my itunes. The tracks are clearly visibly in the music app but when tap on them to play they wont play. help and advice will be much appreciated

    The ipad music app does not allow me to play certain tracks that i have synced via my itunes. The tracks are clearly visibly in the music app but when tap on them to play they wont play. what do i do?

    Agree about the disaster part. I haven't found a fix within iTunes.
    I gave up and switched to downcast 2 days ago. Even though it was a hassle to re-subscribe to all my podcasts, im so much happier.
    To make switching easier, I found that in iTunes you can "get info" on the podcast and copy the RSS address to the clipboard. Put all of these in a message note. When iCloud syncs the note to your phone, you can copy and paste the urls into downcast one at a time to subscribe.
    Downcast has crashed on me occassionally when I'm subscribing to feeds, but so far it has recovered gracefully each time and no data was lost.

  • TS1702 Telegraph app does not allow access to newspaper says have not paid subscription. Paid through iTunes and tel says it is iTunes prob. Can't talk to anybody at itunes

    Telegraph app does not allow access to newspaper. Says. Have not paid sub but pay via iTunes Store. Telegraph says it is an iTunes prob but I can't get to talk to anyone there! Any suggestions please?

    Just got this -
    Dear iTunes Customer,
    You recently received an email informing you that your iTunes Match Subscription could not be auto-renewed. We have resolved the problem and your iTunes Match Subscription has been renewed.
    We apologize for the delay with your auto-renewal. If you have any questions, please contact AppleCare at http://www.apple.com/support/itunes/
    I hope everyone else is all set too.

  • HELP: "web-app" does not allow "filter"

    Here is my web.xml, but everytime I tried to start the web server 6.1, it complains:
    info: CORE3282: stdout: PARSE error at line 108 column -1
    info: CORE3282: stdout: org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    failure: ContextConfig[simple] WEB3524: Parse error in application web.xml
    org.xml.sax.SAXParseException: Element "web-app" does not allow "filter" here.
    at org.apache.crimson.parser.Parser2.error(Parser2.java:3160)
    The following is my web.xml file, thank you let me know what make it!
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
    <display-name>webapps-simple</display-name>
    <description>
    The jakarta-tomcat-4.0.3 sample apps ports over to Sun One Web Server.
    </description>
    <distributable></distributable>
    <servlet>
    <servlet-name>HelloWorldExample</servlet-name> <servlet-class>samples.webapps.simple.servlet.HelloWorldExample</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloWorldExample</servlet-name>
    <url-pattern>/helloworld</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    </welcome-file-list>
    <taglib> <taglib-uri>http://java.apache.org/tomcat/examples-taglib</taglib-uri> <taglib-location>/WEB-INF/tlds/example-taglib.tld</taglib-location>
    </taglib>
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Protected Area</web-resource-name>
    <url-pattern>/jsp/security/protected/*</url-pattern>
    <http-method>DELETE</http-method>
    <http-method>GET</http-method>
    <http-method>POST</http-method>
    <http-method>PUT</http-method>
    </web-resource-collection>
    <auth-constraint>
    <role-name>tomcat</role-name>
    <role-name>role1</role-name>
    </auth-constraint>
    </security-constraint>
    <filter>
    <filter-name>Validation Filter</filter-name> <filter-class>filter.ISValidationFilter</filter-class>
    <init-param> <param-name>onlyAllowRequestWithToken</param-name>
    <param-value>true</param-value>
    </init-param>
    </filter>
    <filter-mapping>
    <filter-name>Validation Filter</filter-name>
    <url-pattern>/filtered/*</url-pattern>
    </filter-mapping>
    </web-app>

    I also getting the same error
    my web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <filter>
              <filter-name>Security Filter</filter-name>
              <filter-class>org.securityfilter.filter.SecurityFilter</filter-class>
              <init-param>
                   <param-name>config</param-name>
                   <param-value>/WEB-INF/securityfilter-config.xml</param-value>
                   <description>Configuration file location (this is the default value)</description>
              </init-param>
              <init-param>
                   <param-name>validate</param-name>
                   <param-value>true</param-value>
                   <description>Validate config file if set to true</description>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>Security Filter</filter-name>
              <url-pattern>/*</url-pattern>
         </filter-mapping>
    <!-- Action Servlet Configuration -->
    <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
    <param-name>config</param-name>
    <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
    <param-name>debug</param-name>
    <param-value>3</param-value>
    </init-param>
         <init-param>
              <param-name>application</param-name>
              <param-value>ApplicationResources</param-value>
         </init-param>
    <init-param>
    <param-name>detail</param-name>
    <param-value>3</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <!-- Action Servlet Mapping -->
    <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <!-- The Welcome File List -->
    <welcome-file-list>
    <welcome-file>abc.jsp</welcome-file>
    </welcome-file-list>
    <taglib>
    <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
    <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
    </taglib>
    </web-app>
    if I change as you said
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    line with
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    then it's not loading the application
    pls suggest me
    my mail id is [email protected]

  • /uwc page does not allow log in after installation of sun jes 4

    I am sure I have seen this before but am not sure how to remedy this - basically trying to log in on the /uwc/auth page does not give an error with any user but just wipes the username and password and returns the log in page again - anyone have any idea?
    I did training a while back and am sure the instructor said that there may have been a typo in the instructions - possibly here - http://wireless.map.beta.com:80/uwc/base/UWCMain?op=logout in the configuring the messaging server for sso but am not sure.

    Sory Shane, didn't mean to be rude - just got taken up with other sunjes instals! basically we have a comms5 and 6 installation but I need to also install a sunjes 4 install - I am able to logon into messenger with username and password with regard to SSo I have done the following:
    Configuring Single Sign-on (SSO) for Communications
    Products
    To set up SSO for Communications Express and for Access Manager/Portal Server, you edit the
    uwcauth.properties file in the /var/opt/SUNWuwc/WEB-INF/config/ directory. You also need to
    run the configutil utility for Messaging Server properties, and edit the ics.conf file for Calendar
    Server.
    &#10148; To Configure Communications Express for SSO
    1. Verify the following settings in the
    /var/opt/SUNWuwc/WEB-INF/config/uwcauth.properties file:
    IS Administrator Password -- adminpass
    Messenger Express Port [80] 8080
    Calendar Server Hostname [wireless.map.beta.com] accept default
    Calendar Server Port [9004] 3080
    Calendar Admin user ID [calmaster] accept default
    Calendar Administrator User
    Password
    -- adminpass
    URL of PAB Directory Server [ldap://wireless.map.beta.com:389] accept default
    Bind As [cn=Directory Manager] accept default
    Password -- adminpass
    Table 15 Values for config-uwc Script (Continued)
    Option [Default Value] Enter:
    Configuring Components
    Part Number 819-4879-15 Page 33 of 62
    2. Restart Web Server if you change any of the above settings.
    &#10148; To Configure Messaging Server for SSO
    1. To enable Communications Express users to access Messenger Express using the Access
    Manager session, run the following configutil commands:
    2. Stop then start Messaging Server:
    cd /opt/SUNWmsgsr/sbin
    ./stop-msg
    ./start-msg
    uwcauth.identity.enabled=true
    uwcauth.identity.login.url=http://wireless.map.beta.com:80/amserver/UI/Login
    uwcauth.identity.binddn=uid=amadmin,ou=people,o=isp
    uwcauth.identity.cookiename=iPlanetDirectoryPro
    uwcauth.identity.bindcred=adminpass
    uwcauth.http.port=80
    uwcauth.https.port=443
    cd /opt/SUNWmsgsr/sbin
    ./configutil -o local.webmail.sso.amnamingurl -v \
    http://wireless.map.beta.com:80/amserver/namingservice
    ./configutil -o local.webmail.sso.uwcenabled -v 1
    ./configutil -o local.webmail.sso.uwclogouturl -v \
    http://wireless.map.beta.com:80/uwc/base/UWCMain?op=logout
    ./configutil -o local.webmail.sso.uwcport -v 80
    ./configutil -o local.webmail.sso.uwccontexturi -v "uwc"
    ./configutil -o local.webmail.sso.amcookiename -v iPlanetDirectoryPro
    ./configutil -o local.webmail.sso.uwchome -v http://wireless.map.beta.com/uwc
    ./configutil -o service.http.allowadminproxy -v yes
    ./configutil -o service.http.ipsecurity -v no

  • Safari update 5.1.4 does not solve logging out of Facebook

    After installing the new update for Safari (5.1.4), I am still being logged out of Facebook whenever I close my Mac.
    What is a reason for this? How can it be solved?
    I also have FileVault 2 enabled...

    Hi ...
    Right or control click the Safari app in your Applications folder then click Get Info.
    In the Get Info panel you'll see:  Open in 32-bit mode
    If that box is selected, deselect it.
    Quit then relaunch Safari for changes to take effect.
    Turning off the Lion "resume" feature may help also.
    Open System Preferences > General
    Deselect:  Restore windows when quitting and re-opening apps
    Restart your Mac.
    Thanks for visiting our communities  

  • Nfs mount point does not allow file creations via java.io.File

    Folks,
    I have mounted an nfs drive to iFS on a Solaris server:
    mount -F nfs nfs://server:port/ifsfolder /unixfolder
    I can mkdir and touch files no problem. They appear in iFS as I'd expect. However if I write to the nfs mount via a JVM using java.io.File encounter the following problems:
    Only directories are created ? unless I include the user that started the JVM in the oinstall unix group with the oracle user because it's the oracle user that writes to iFS not the user that creating the files!
    I'm trying to create several files in a single directory via java.io.File BUT only the first file is created. I've tried putting waits in the code to see if it a timing issue but this doesn't appear to be. Writing via java.io.File to either a native directory of a native nfs mountpoint works OK. ie. Junit test against native file system works but not against an iFS mount point. Curiously the same unit tests running on PC with a windows driving mapping to iFS work OK !! so why not via a unix NFS mapping ?
    many thanks in advance.
    C

    Hi Diep,
    have done as requested via Oracle TAR #3308936.995. As it happens the problem is resolved. The resolution has been not to create the file via java.io.File.createNewFile(); before adding content via an outputStream. if the File creation is left until the content is added as shown below the problem is resolved.
    Another quick question is link creation via 'ln -fs' and 'ln -f' supported against and nfs mount point to iFS ? (at Operating System level, rather than adding a folder path relationship via the Java API).
    many thanks in advance.
    public void createFile(String p_absolutePath, InputStream p_inputStream) throws Exception
    File file = null;
    file = new File(p_absolutePath);
    // Oracle TAR Number: 3308936.995
    // Uncomment line below to cause failure java.io.IOException: Operation not supported on transport endpoint
    // at java.io.UnixFileSystem.createFileExclusively(Native Method)
    // at java.io.File.createNewFile(File.java:828)
    // at com.unisys.ors.filesystemdata.OracleTARTest.createFile(OracleTARTest.java:43)
    // at com.unisys.ors.filesystemdata.OracleTARTest.main(OracleTARTest.java:79)
    //file.createNewFile();
    FileOutputStream fos = new FileOutputStream(file);
    byte[] buffer = new byte[1024];
    int noOfBytesRead = 0;
    while ((noOfBytesRead = p_inputStream.read(buffer, 0, buffer.length)) != -1)
    fos.write(buffer, 0, noOfBytesRead);
    p_inputStream.close();
    fos.flush();
    fos.close();
    }

  • It is very difficult to navigate on facebook via safari. The IPAD does not allow other browsers to download and use it almost prevents the facebook app and the lack of scrolling the page.

    It is very difficult to navigate on facebook via safari. The IPAD does not allow other browsers to download and use it almost prevents the facebook app and the lack of scrolling the page.

    I also have problems with Facebook on my iPad 2. I don't do a lot with Facebook and generally only post on my feed page. Sometimes hitting return on the keyboard enters the comment, sometimes not. Sometimes the comment will show on my iPad but if I revisit that page I find that the comment has disappeared. So I'd say that Facebook and my iPad are not totally compatible with each other.
    I looked into Friendly and was about to purchase this free ap. But before I did I went to the Friendly web page for more info. There I found a page with users comments. One after another users complained about bugs with Friendly. The developers claimed a fix was coming but the user comments complained about the lack of response and support. One of the fixes suggested by the developers was to log out of Friendly then log back in. One user complained that doing this three times in ten minutes was not very helpful. Because of this I decided to avoid Friendly.
    I did find a Facebook developed ap but it was for the iPhone. I presume that iPhone aps will work on the iPad but I'll wait until Facebook releases an iPad compatible ap. If there is an ap developed by Facebook for the iPad that I missed please let me know.

  • Farm Remote App 2012 R : Your system administrator does not allow the use of default credentials to log on to Work Resources

    Hi
    Here is the situation:
    I have a Farm with 3 servers W2012R2 in a Domain
    Server1                           Server 2                                  
    Server3
    RDSession Host            RDSession Host                            
    RDSession Host
    Connection Broker        Connection Broker (Passive)
    RD Web Access
    2 DNS Alias : - poc.mydomain.local (Use for the RD Web Access and points to Server1
                        -poccb.mydomain.local (Use for the Connection Broker and points to Server1)
    I have setup the Connection broker in HA with Server2 as Passive Server : DNS Round Robin poccb.mydomain.local (Server1)
    The certificate Manager has generated 2 CA certificates :
    - 1 for the RD Web Acc (poc.mydomain.local
    -1 for Connection Broker SSO and for publishing
    I have created 1 Group Policy for these 3 servers and 1 GP for my client Windows 7 SP1.
    Server GPO :
    Computer/Administrative Templates/Windows Components/Remote Desktop Services/Remote Desktop Session Host/Security
    Always prompt for password upon connection=Disabled
    Require use of specific security layer for remote (RDP) connections : SSL (TLS 1.0)
    Set client connection encryption level : High Level
    Client GPO
    Computer/Administrative Templates/System/Credentials Delegation = Allow delegating default credentials (Concatenate OS defaults with input above)
    TERMSRV/POCCB.mydomain.local
    I use no Gateway and in my collection,I have activated SSL (Like in my Server GPO)
    I have now problem with SSO.
    Connection with remote desktop client with server name = poccb.mydomain.local
    Your system administrator does not allow you the use of default credentials to log on to the remote computer poccb.mydomain.local because its identity is not fully verified
    If in my client GPO I add the physical name of the 3 servers, it works :
    TERMSRV/Server1
    TERMSRV/Server2
    TERMSRV/Server3
    Open RDP Files with server name = poccb.mydomain.local
    if my connection broker connects me on Server1 , no problem
    But If I arrive on Server2 & Server 3=
    Your system administrator does not allow the use of default credentials to log on to Work Resources
    I have searched on internet. No result for " to log on to Work Resources"
    Any idea ? Thanks for your help

    Hi,
    Thank you for posting in Windows Server Forum.
    Firstly check that, your user is using domain\username to enter the credential in the dialog box.
    Now for a try, you can edit .rdp file with notepad and just place “enablecredsspsupport:i:0” line in it, save it an launch to check whether you are facing same issue.
    As you are using windows 7 then upgrade to RDP 8.1. Also as you have already enter the FQDN name of server under “Allow delegating default credentials”. For a try please enable and configure for all the remaining settings as follow and check the result.
    Start / Run / gpedit.msc / Computer Configuration / Administrative Templates / System / Credentials Delegation, and make sure you have the following four options enabled and configured:
    Allow Delegating Default Credentials with NTLM-only Server Authentication
    Allow Delegating Default Credentials
    Allow Delegating Saved Credentials
    Allow Delegating Saved Credentials with NTLM-only Server Authentication
    Finally, open a command prompt and use “gpupdate /force” command to apply the policy directly.
    More information:
    Remote desktop credentials did not work
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • JAN 4, 2012  As of the  Upgrade to   Lion,. and the  Email portion, ..   DOES NOT  allow a Video Clip to be sent via the Email  as the I-Photo is not supported by Video Clips  ( Previous Leopard  No problem  clip and drag  via Quick Time Pro to the email

    JAN 4, 2012 
    As of the  Upgrade to   Lion,.   2007  I-Mac  -   the  Email portion, ..   DOES NOT    allow a Video Clips to be sent via the Email 
    as the I-Photo is not supported by Video Clips  ( Previous Leopard ) 
    No problem  clip and drag  via Quick Time Pro to the email  and select the  Attchment  size to send. .  Depending on the 
    Size of the Video Clip  ..      Now  Lion only  Export's   1 size, .   only  and as a result . . teh  File is  TOO  Large and
    Will NOT  send via  E-Mail    ??? 
    Between the   Issue of   the   Lion,  and  Email  issues ,   and  the   Upgrade  of   I-Touch  to  5.1  from  4.2.1 
    as my  Photo  Size is  Huge ..    70,000  +  photos in the  Computer. .   and was   40,000  in the   I - Touch  .. .  
    The  New I-Touch  too will not Load the  same  as Previously  used  on  either  my  16 GB   or  32 GB   Unit . . 
              No Help . ..   so far, ..  as a Apple user   since   1996 ..    I  have Never  experieanced such  frustration    ??? 
                   (  any one have some help  if similar  experiances    ?     thank you     )

    JAN 4, 2012 
    As of the  Upgrade to   Lion,.   2007  I-Mac  -   the  Email portion, ..   DOES NOT    allow a Video Clips to be sent via the Email 
    as the I-Photo is not supported by Video Clips  ( Previous Leopard ) 
    No problem  clip and drag  via Quick Time Pro to the email  and select the  Attchment  size to send. .  Depending on the 
    Size of the Video Clip  ..      Now  Lion only  Export's   1 size, .   only  and as a result . . teh  File is  TOO  Large and
    Will NOT  send via  E-Mail    ??? 
    Between the   Issue of   the   Lion,  and  Email  issues ,   and  the   Upgrade  of   I-Touch  to  5.1  from  4.2.1 
    as my  Photo  Size is  Huge ..    70,000  +  photos in the  Computer. .   and was   40,000  in the   I - Touch  .. .  
    The  New I-Touch  too will not Load the  same  as Previously  used  on  either  my  16 GB   or  32 GB   Unit . . 
              No Help . ..   so far, ..  as a Apple user   since   1996 ..    I  have Never  experieanced such  frustration    ??? 
                   (  any one have some help  if similar  experiances    ?     thank you     )

  • My menu bar does not appear at the top of my homepage on a brand new 27" iMac only when i pull up an app. this does not allow me to shut down my mac when all apps are closed nor does it all me to use finder. any help would be awesome

    My menu bar does not appear at the top of my homepage on a brand new 27" iMac only when i pull up an app. this does not allow me to shut down my mac when all apps are closed nor does it all me to use finder. any help would be awesome

    Press the escape (esc) key to exit full-screen mode.

  • Why does ipod does not allow to download free app free??

    My Ipod touch does not allow to download anything that is free or paid apps on my ipod. even if an app is free it asks for verification which directs me to payment gallery how come this is happening if an app is free it should not charge me it should not go for verification payment info How do I rectify this problem please help as this is frustrating I cannot download anthing from the app store!!!!!!!!

    To purchase anything with a normal account requires a valid payment method.  Yu can however create a new account that is oly good for app. To do that see:
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card

  • I am trying to stream via ESPNWatch but I get a message saying I have a popup blocker that does not allow the streaming to happen. I unchecked the pop up blocker box in the Safari preferences to no avail. Any ideas?

    I am trying to stream via ESPNWatch but I get a message saying I have a popup blocker that does not allow the streaming to happen. I unchecked the pop up blocker box in the Safari preferences to no avail. Any ideas?

    Might be a Safari extension...
    From your Safari menu bar click Safari > Preferences then select the Extensions tab.
    If there are any extensions installed, turn that OFF, then quit and relaunch Safari to test.

  • When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    When trying to send E-mail via AOL i get the message "rejected by the server because it does not allow relaying" I have checked settings as per answers to similar question

    From which account does the email not send?  When sending from an account, the iPad will first try to use the aoutgoing server for that account.  If it can't it will try the other accounts listed.in the setting on the iPad for that account.  It soulds like the server for the account is not working and that the alternate server is resjecting the messag since it did not originate ffrom the account associated with that server,  That is to prevent sending spam.

  • TS1702 My calendar app (Tuesday 1 Calendar) does not allow me to add events. There is no Calendars or + at the top of the app.

    My calendar app (Tuesday 1 Calendar) does not allow me to add events. There is not a (Calendars or +) at the top of the application. Previous iPhones I have had had this feature. Please advise

    Go to Settings>iCloud, turn Calendars to On.

Maybe you are looking for

  • Wireless Modem and Airport Express USB Printer

    I am already connected to the internet via a wireless modem provided by my ISP. The connection uses Airport. I just purchased an Airport Express to connect my computer to a printer through the USB port. However, I can't get the airport utility to con

  • How to trap Selection change

    Hi All, I need to observer selection change. How do i go about it. In basicpersistinterface the kBPISelectionObserverImpl is bound with the panel. Similarly I want to call a method on selection change and not update some UI, so where do i need to put

  • BPM counter script

    just needed a manual bpm counter, partially to practice perl, but also cuz i dont like the audacity auto bpm counter.  I like to manually click to the beat... but thats just me. It works, but the output isnt rly pretty.  should i print another line t

  • Why won't my MBPr read my external ssd drive?

    hello.  quick question for anyone who may have some suggestions.  i've been using aoyen digital u32 shadow ssd drive for a few months now with my 2007 macbook pro.  i got this error message the first time i plugged it into my new macbook pro retina. 

  • Mail does not open after IPhoto compose.

    I want to email photos from IPhoto 7.1.3 I hit the email button, make the appropiate choices, hit the compose button. The application prepares the photos for email and then... nothing. The mail application (3.2) does not open on a new message page wi