IPhoto Facebook login

iPhoto does not recognize Facebook login. After failing, I receive from Facebook a code to enter, but iPhoto does not have place to enter the code. What do I do to correct it?

We are having the same problem. However, I don't think it has anything to do with the software on our computer because the exporter works on my facebook account but not on my wife's. But I can't see what causes it.
Thorsten

Similar Messages

  • ADF integration with Facebook Login

    Hi,
    just wanted to share a working example of Facebook Login integration in an ADF application, that only uses default ADF Faces tags. Here is how the JSF can look like:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="untitled1.jsf" id="d1">
            <af:form id="f1">
                <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx" id="pt1">
                    <f:facet name="center">
                        <af:panelBox text="PanelBox2" id="pb2">
                            <f:facet name="toolbar"/>
                            <af:panelGroupLayout id="pgl1" layout="vertical">
                                <af:outputText value="Facebook Login" id="ot2"/>
                                <af:outputText value="&lt;fb:login-button show-faces=&quot;true&quot; width=&quot;200&quot; max-rows=&quot;1&quot;>&lt;/fb:login-button>" id="ot1"
                                               escape="false"/>
                            </af:panelGroupLayout>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="header">
                        <af:outputText value="&lt;div id=&quot;fb-root&quot;>&lt;/div>" id="ot3" escape="false"/>
                    </f:facet>
                    <f:facet name="end">
                        <af:panelBox text="PanelBox3" id="pb3">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="start">
                        <af:panelBox text="PanelBox1" id="pb1">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="branding"/>
                    <f:facet name="copyright"/>
                    <f:facet name="status"/>
                </af:pageTemplate>
            </af:form>
            <f:facet name="metaContainer">
                <af:resource type="javascript">
        window.fbAsyncInit = function() {
            FB.init({
                appId      : '115771338443915', // App ID
                channelUrl : 'http://localhost:8081/Application7-ViewController-context-root/channel.html', // Channel File
                status     : true, // check login status
                cookie     : true, // enable cookies to allow the server to access the session
                xfbml      : true  // parse XFBML
            FB.Event.subscribe('auth.authResponseChange', function(response) {
            // Here we specify what we do with the response anytime this event occurs.
                if (response.status === 'connected') {
                  // The response object is returned with a status field that lets the app know the current
                  // login status of the person. In this case, we're handling the situation where they
                  // have logged in to the app.
                  testAPI();
                } else if (response.status === 'not_authorized') {
                  // In this case, the person is logged into Facebook, but not into the app, so we call
                  // FB.login() to prompt them to do so.
                  // In real-life usage, you wouldn't want to immediately prompt someone to login
                  // like this, for two reasons:
                  // (1) JavaScript created popup windows are blocked by most browsers unless they
                  // result from direct interaction from people using the app (such as a mouse click)
                  // (2) it is a bad experience to be continually prompted to login upon page load.
                  FB.login();
                } else {
                  // In this case, the person is not logged into Facebook, so we call the login()
                  // function to prompt them to do so. Note that at this stage there is no indication
                  // of whether they are logged into the app. If they aren't then they'll see the Login
                  // dialog right after they log in to Facebook.
                  // The same caveats as above apply to the FB.login() call here.
                  FB.login();
        // Load the SDK asynchronously
        (function(d){
             var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
             if (d.getElementById(id)) {return;}
             js = d.createElement('script'); js.id = id; js.async = true;
             js.src = "//connect.facebook.net/en_US/all.js";
             ref.parentNode.insertBefore(js, ref);
        }(document));
        // Here we run a very simple test of the Graph API after login is successful.
        // This testAPI() function is only called in those cases.
        function testAPI() {
            console.log('Welcome!  Fetching your information.... ');
            FB.api('/me', function(response) {
              console.log('Good to see you, ' + response.name + '.');
              console.log('Response: ' + response);
    </af:resource>
            </f:facet>
        </af:document>
    </f:view>
    Note that you must have created a Facebook App on Facebook.com which provides the AppId number and set the App in "Sandbox"  mode.
    The jsf works in JDeveloper 11.1.2.4 and Glassfish 3.1.2 and ADF Essentials 11.1.2.4

    When using a web service proxy, you need to pass the data as an object, which' structure is defined in the web service proxy wrapper classes.
    When you've defined a data control for your bpel process, you can just drag and drop the 'initiate'/'execute', your operation and bind this to the update-button.
    When working with the proxy client, you need to populate your java class objects with the employee-object, this can be done in a backing bean or managed bean in your adf faces application.
    For more information you can always have a look at my blog where I've provided an explanation about the different possibilities of interfacing adf with SOA.
    Kind regards,
    Nathalie

  • Storing Facebook Login Data Of A user In An Application

    I've recently been working on a desktop application which allows users to view some of their facebook details such as albums, images and statuses within my application itself. However I've noticed that every time the user access the app before they can access these details they need to be taken to facebook, actually login and then close internet explorer before my application can access these details. As far as I know this is a necessary validation procedure however I believe this defeats the object of having a user's facebook details in my application when the user has to first access facebook anyway to login and see these details when they could have simply stayed within facebook in internet explorerand viewed these details there.
    What I'm wondering is if there's any workaround to cut out this middle man and perhaps allow a user to store their facebook login details in my application so that the app can perhaps log them in automatically by submitting these details to facebook when they access the app and they won't need to visit facebook to log in manually. Is there any way to do this perhaps in an invisible html component or something?

    Yep the problem is I'm trying to cut out the part where the user gets taken to the login page altogether, my reasons for this being that:-
    1. My app operates in full screen mode and navigating a user to internet explorer to sign in to facebook forces them out of full screen mode. I do have links to websites and we content in my app but these all simply bring up a html component containing the selected website within my application itself.
    2. My client wants my app to be completely self-contained so obviously I won't be able to have it switch to internet explorer, it would be better if I could at least get the facebook login to open in the application in a html component rather than navigate to the web.
    3. I'd also like to be able to save these login details in the app i.e. the user enters their username and password into my app similar to the way internet explorer allows and they are saved within the app for good until the user chooses to change them. I can't see this being possible though.

  • Into my download stack which appears to be a Facebook login page to someone who is not me but has my e/mail as the primary account,should I be concerned?

    I have clicked on a link received in my e/mai which has put a download  into my download stack which appears to be a Facebook login page to someone who is not me but has my e/mail as the primary account,should I be concerned?

    I would do the following just to be safe.
    Change your email password so anyone trying to use your email address won't be able to or delete that email address from where ever you got it after getting a new one.
    I would trash the download.

  • I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    I'm trying to set up my new iPhone 5s from a backup of my previous iPhone, when trying to enter my Facebook login info in settings I keep getting the following error message : error signing in could not communicate with server, please help !

    Can you access other apps? Can you acess the internet? Can you access applications that use internet besides facebook?
    If answer is yes to all of these; contact Facebook.

  • Facebook Login Window Position on screen

    I am working on a kiosk application that must be ADA compliant. Since the screen is vertical and designed for a standing adult, to be ADA comliant, there must be a mode where the UI is all on the lower portion of the screen. This is simple except that I cannot get the Facebook Login window to display in the lower portion of the screen, it will only appear in the center in a new OS window. The LoginWindow class has two properties of width and height that can be set, but not the position of the window on the screen. Is there a way to set a position for where the Facebook Login window appears on screen?

    That sounds like an OS level question rather than an AIR specific question.  You may have better luck searching for support on your OS.

  • What is my Skype Id when using facebook login

    What is my skype id when using facebook login I cannot find it to give to people to connect to me many thanks
    Solved!
    Go to Solution.

    Theu can use your generic Skype name:
    facebook:yourname
    where yourname is the name you use to login to Facebook.

  • IPhoto/Facebook/Aperture Query

    Hey guys,
    I know that iPhoto is supposed to two-way sync with Facebook and I'm not going to complain about it (unlike all the other iPhoto-Facebook support threads I've just read through). My question is slightly different...
    I switched over all my libraries to Aperture, for the increased organization, features, etc etc. I love it. I even like the third-party Facebook exporter plugin that Aperture supports.
    But I still have a few albums on iPhoto that are synched with Facebook. They have comments and tags and such so I don't want to remove them from my account or reupload them, but these photos are also taking up about a gigabyte of harddrive space in the iPhoto library (not to mention being duplicated in the Aperture library).
    So, what I am wondering is if there is someway to leave those photos untouched on Facebook, and cause iPhoto to forget about them? I want to keep iPhoto around, because I do like some of its image editing tools, but I won't be keeping any of my master images there nor will I upload any more photos from iPhoto to facebook.
    Regarding other threads, I've come up with a few ideas of making this work. If someone could please let me know if any of these sound correct, I'd really appreciate it.
    1) Just delete the iPhoto library file. Upon launching iPhoto next, it will create a new library file and should not have any ties with my facebook account? This would allow those albums to stay online but remove them from my HDD? (unlock the facebook album info is stored in a preference file somewhere and deleting the library doesn't affect it?)
    2) I've heard that I could create a new, empty album on facebook and move all the photos from the old albums into that one... which keeps all the tags/comments/etc. I think this would also make the old photos seem new though, so I don't really want to go this route, if it can be avoided.
    So, I guess what I am really wondering is: would option 1 work, in my case? I guess I could also set-up a little snitch rule to prevent iPhoto from connecting to Facebook... What do you guys think is the easiest solution?
    Cheers

    That worked! The facebook album was still in the sidebar, so to be careful, I denied all outgoing connections with little snitch when i deleted it, since it was still giving me the "delete this and it will unpublish message".
    Between removing the Facebook account and Little Snitch, iPhoto is now separated from my Facebook and all the albums are still there!
    Thanks for the help!

  • Iphoto facebook exporter - faded images

    Hi can anyone help me with my problem? Ive been using the iphoto facebook explorer for ages, but all of a sudden it is uploading my images with the colours very faded to facebook.
    Ive uninstalled and reinstalled - done the lastest iphoto upgrades..
    any other ideas?
    Thanks!!

    Looks like you still don't get it. Normally if we upload photos using Facebook Exporter for iPhoto, the images would still retain the 'colour information' but obviously lose some quality (like size, clarity, etc.) but the COLOUR stays, thus the photo will look similar to the one we have in iPhoto.
    Meanwhile, uploading manually using the default Facebook photo uploader will result in the stripping of colour information, so basically before this problem happened, photos uploaded using this method will look a little faded in color and of course crappier than using the iPhoto. However, most Mac user might not realize this fact since they have been uploading photos to Facebook using iPhoto.
    And the problem we're having right now is uploading using iPhoto actually results in really crappier images than using default method. The colour information is no longer retained, the colour looks 'faded', desaturated, less contrast. It's so bad, that people who normally use iPhoto to upload would realise a huge difference. This is a fact, the discussions page for the Facebook Exporter for iPhoto is full of people complaining about this. It's not about why should we care about photo quality in Facebook, it's about why this problem happened. And so far no one has come up with any solutions, and neither Apple nor Facebook has responded.

  • IPhoto Facebook upload-feed cannot be found

    When trying to add photos to an existing iphoto/facebook album I get the error message that says "the feed cannot be found".  Does anyone know how to resolve this?

    I just had the same problem.  When looking at the album, I had to approve all of the photos and after that, they didn't show up in my feed.  I removed the album, went here: https://www.facebook.com/settings?tab=applications , and removed iPhoto.  It said it was last accessed 6 months ago, which was weird.  Then I signed back into Facebook through iPhoto and it looks like it's working again.

  • Facebook login integration with Oracle Apex

    Hello,
    Wondering if anyone has had success in implementing facebook login for Oracle Apex.  I walked through facebook developer docs and I am able to see through the test api that I am connected to facebook in my apex app, but not sure how to redirect through login using facebook credentials.  If someone could give me some examples that would be great.

    You could look at this plugin:  - Authentication Plugin - Facebook Authentication Plugin if you are on atleast APEX 4.x...  Otherwise you will have your work cut out for yourself..
    Thank you,
    Tony Miller
    LuvMuffin Software

  • I just dowload your version but I can't go to facebook login. How can I do?

    I just download your version but I can't go to facebook login. How can I do?

    You must create a segment of the song as a ringtone which can't be done with music purchased from the iTunes Store or music purchased from the iTunes Store that includes DRM protection. Or you can purchase an available ringtone from the iTunes Store.

  • Change from Facebook login to an actual spotify account?

    When I first setup spotify, I used the facebook login option. But now, I'd like to change this by creating an account for spotify (username and password) but don't know how.
    Is there a way to do that by keeping my account as is, but creating new login details?
    I don't mind keeping it connected to facebook (as I have deactivated all the sharing stuff) but I don't like this trend that everything are dependent of facebook accounts.
    Thanks.
     

    RHaynes212 wrote:
    I have the same issue and frustrated to the point of just cancelling my direct debit on premium account, the suggestion on here don't seem to work. The only way seems to be to get customer services to send you the link direct?  would bgarage full if somebody could do this for me. 
    I want to swap forms a fb login to a spotify login so that I can use a new sonos system. I have a premium account and do not want to have to cancel this to have to set up a new one. Surely there is a solution? 
    Help. R
    Hey! Welcome to the community :) 
    There is no direct way to transfer from a Spotify account creating using Facebook to the dedicated Spotify account. I wrote a tutorial on how to do it here, but it is not ideal and requires a little bit of work. 
    You can use Spotify on Sonos without changing your account type though! You just need to retrieve your device username and password by following the steps outlined in this FAQ and then using those details to login on Sonos. 
    Peter

  • Unable to add Flickr account with facebook login

    Hi,
    rMBP upgraded yesterday to Mountain Lion...trying to add Flickr connection, using Facebook dropdown and I get a blank screen...is this working for anyone?
    thanks!

    Still no resolution on this but I stopped by an Apple Store and confirmed that the same happens on all their Retina MBP's with Mountain Lion installed but does work correctly on the regular MBP's.
    I filed feedback with Apple and even called tech support but the call wasn't exactly fruitful.  I assume we will have to wait until 10.8.1 for this to be fixed (hopefully not longer).
    In the meantime I figured out how to disconnect my Facebook account from Flickr (although I'm not positive that I really had to) and log in with my Yahoo ID instead.  I successfully setup Flickr in Mountain Lion using just my Yahoo ID.
    The trickiest part for me was figuring out what my Yahoo ID and password were. Turns out it was just my Facebook login email and password.

  • Facebook login does not add user and password to the account

    Hi
    PROBLEM
    Facebook login button does not create user and password for login.
    We wish we could ONLY use facebook login button to allow users the account creation on our campus.
    So we disabled the user creation webform.
    And only out facebook login buttons that students can only login to our campus using their fb account in the hope that they dont share it (hopefuly)
    AND
    This is a problem BECAUSE if I publish events and capture leads ALL those users have problems creating their user account latter.
    CASE IS
    1.- A person comes to my website and leaves a comment. This creates a register with their email and name.
    2.- Days later this same user comes back and clicks a facebook user login/ account creatio.
    2.1 The page now shows that user name as it comes from Facebook. BUT NO USER AND PASSWORD information added to that person's register in the CRM.
    So
    If some one leaves a comment, register to our mailing list FIRST
    and SECOND tries to create his account afterward. IT DOESNT WORK
    Any ideas?
    Thank you so much in advance.
    P.S.
    This is the web page. If you 1) Leave first a comment and 2) click on fb login/create account button the profile renders unusable. I have to delete it so you can create your user
    http://www.zuiliuniversity.com/nivel-2-curso-especializado-proyecto-de-marketing-digital

    if you are only using 2 snmp commands  to let the switch pull the config from your tftp server, than there are some commands missing ...
    have a look here to get a documentation about this process:
    https://supportforums.cisco.com/docs/DOC-1860
    http://www.cisco.com/en/US/tech/tk648/tk362/technologies_configuration_example09186a0080094aa6.shtml

Maybe you are looking for