Facebook Inbox Errors

Facebook Inbox Errors. It says "Error. Unable to load this mailbox. Have the latest Itunes version and have tried deleting and re-installing the application. Any ideas?

The Facebook app has been having random problems every now and then. THere is no solution but it will eventually work within a week

Similar Messages

  • Why am I getting ExchangeWebServices Inbox Error: Error, ErrorServerBusy. The server cannot service this request right now. Try again later

    I recently switched my application that uses EWS from an on-premise Exchange Server to Exchage Online through Office356.
    The process worked just fine for several days, then I started getting the following errors;
    Error accessing [USERNAME] email account.; ExchangeWebServices Inbox Error: Error, ErrorServerBusy, The server cannot service this request right now. Try again later. --> 
    This has been happening for the past 14 hours now. 
    I contacted my Office365 support team and they acted like they had never heard of the Exchange Web Services API, so no help there.
    I can access the mailbox using the O365 web portal and I can access the mailbox account using the Outlook 2013 desktop client. The issue seems specific to EWS
    My program is a Windows service, written in VB.Net. It connects to EWS, goes to the user account inbox, iterates through the inbox extracting attachments from messages, then moves the messages to a saved folder below the inbox.
    I created the wrapper for EWS that I can reference in my project code using the following, run from an elevated VS2012 command prompt;
    wsdl.exe /namespace:ExchangeWebServices /out:EWS.cs https://outlook.office365.com/ews/services.wsdl /username:[email protected] /password:p@ssw0rd
    csc /out:EWS_E2K13_release /target:library EWS.cs
    I bind to EWS in my class, using the following code;
    Imports System.Net
    Imports ExchangeWebServices
    Public Class Exchange2013WebServiceClass
        Private ExchangeBinding As New ExchangeServiceBinding
        Public Sub New(ByVal userEmail As String, ByVal userPassword As String, ByVal URL As String)
            ExchangeBinding.Credentials = New NetworkCredential(userEmail, userPassword)
            ExchangeBinding.Url = URL
        End Sub
    The error that is logged gets triggered when my code makes a call to the following method;
        Public Function GetInboxMessageIDs() As ArrayOfRealItemsType
            Dim returnInboxMessageIds As ArrayOfRealItemsType = Nothing
            Dim errMsg As String = String.Empty
            'Create the request and specify the travesal type.
            Dim FindItemRequest As FindItemType
            FindItemRequest = New FindItemType
            FindItemRequest.Traversal = ItemQueryTraversalType.Shallow
            'Define which item properties are returned in the response.
            Dim ItemProperties As ItemResponseShapeType
            ItemProperties = New ItemResponseShapeType
            ItemProperties.BaseShape = DefaultShapeNamesType.IdOnly
            'Add properties shape to the request.
            FindItemRequest.ItemShape = ItemProperties
            'Identify which folders to search to find items.
            Dim FolderIDArray(0) As DistinguishedFolderIdType
            FolderIDArray(0) = New DistinguishedFolderIdType
            FolderIDArray(0).Id = DistinguishedFolderIdNameType.inbox
            'Add folders to the request.
            FindItemRequest.ParentFolderIds = FolderIDArray
            Try
                'Send the request and get the response.
                Dim FindItemResponse As FindItemResponseType
                FindItemResponse = ExchangeBinding.FindItem(FindItemRequest)
                'Get the response messages.
                Dim ResponseMessage As ResponseMessageType()
                ResponseMessage = FindItemResponse.ResponseMessages.Items
                Dim FindItemResponseMessage As FindItemResponseMessageType
                If ResponseMessage(0).ResponseClass = ResponseClassType.Success Then
                    FindItemResponseMessage = ResponseMessage(0)
                    returnInboxMessageIds = FindItemResponseMessage.RootFolder.Item
                Else
                    '' Server error
                    Dim responseClassStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseClassType), ResponseMessage(0).ResponseClass).ToString
                    Dim responseCodeStr As String = [Enum].GetName(GetType(ExchangeWebServices.ResponseCodeType), ResponseMessage(0).ResponseCode).ToString
                    Dim messageTextStr As String = ResponseMessage(0).MessageText.ToString
                    Dim thisErrMsg As String = String.Format("ExchangeWebServices Inbox Error: {0}, {1}, {2}", responseClassStr, responseCodeStr, messageTextStr)
                    errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & thisErrMsg
                End If
            Catch ex As Exception
                'errMsg = String.Join("; ", errMsg, ex.Message)
                errMsg = If(errMsg.Equals(String.Empty), String.Empty, errMsg & "; ") & ex.Message
            End Try
            If Not errMsg.Equals(String.Empty) Then
                returnInboxMessageIds = Nothing
                Throw New System.Exception(errMsg)
            End If
            Return returnInboxMessageIds
        End Function  
    Since the code worked just fine for several days and then suddenly stopped working with a server busy error, I have to think that this is some type of limit or throttling by EWS on the account. I process several thousand emails per day, in chunks of 300
    at a time. 
    But I have no idea how to check for any limits exceeded. I am nowhere close to my O365 mailbox size limit. Right now, there are over 4,000 messages in my inbox, and growing. 
    Thanks in advance for any ideas you can offer.
    Dave

    All the API's EWS, MAPI, ActiveSync,Remote powershell are throttled on Office365 (based around what 1 particular user could resonably do). If you have had a read of this already i would recommend
    http://msdn.microsoft.com/en-us/library/office/jj945066(v=exchg.150).aspx
     You can't adjust or even find your current throttle usage so you have to try to design your code around living inside the default limits. If your using One Service Account to access multiple Mailboxes (or if that account is because used across multiple
    applications) that can cause problems. In this case using EWS Impersonation is good solution as described in
    http://blogs.msdn.com/b/exchangedev/archive/2012/04/19/more-throttling-changes-for-exchange-online.aspx (this basically means the Target Mailbox is charged instead of the Service Account).
     Looking at the code one thing I notice missing is your don't appear to be paging the results of FindItems, also have versioned your requests to Exchagne2013. eg ". When the value of the
    RequestServerVersion element indicates Exchange 2010 or an earlier version of Exchange, the server sends a failure response with error code
    ErrorServerBusy. If the value of the RequestServerVersion
    element indicates a version of Exchange starting with Exchange 2010 SP1
    or Exchange Online, and the client is using paging, EWS may return a
    partial result set instead of an error"
    To Page FindItems Correctly you should use the IndexedPageViewType class and page the Items at no more the 1000 at a time eg something like
    IndexedPageViewType indexedPageView = new IndexedPageViewType();
    indexedPageView.BasePoint = IndexBasePointType.Beginning;
    indexedPageView.Offset = 0;
    indexedPageView.MaxEntriesReturned = 1000;
    indexedPageView.MaxEntriesReturnedSpecified = true;
    FindItemType findItemrequest = new FindItemType();
    findItemrequest.Item = indexedPageView;
    findItemrequest.ItemShape = new ItemResponseShapeType();
    findItemrequest.ItemShape.BaseShape = DefaultShapeNamesType.IdOnly;
    BasePathToElementType[] beAdditionproperties = new BasePathToElementType[3];
    PathToUnindexedFieldType SubjectField = new PathToUnindexedFieldType();
    SubjectField.FieldURI = UnindexedFieldURIType.itemSubject;
    beAdditionproperties[0] = SubjectField;
    PathToUnindexedFieldType RcvdTime = new PathToUnindexedFieldType();
    RcvdTime.FieldURI = UnindexedFieldURIType.itemDateTimeReceived;
    beAdditionproperties[1] = RcvdTime;
    PathToUnindexedFieldType ReadStatus = new PathToUnindexedFieldType();
    ReadStatus.FieldURI = UnindexedFieldURIType.messageIsRead;
    beAdditionproperties[2] = ReadStatus;
    findItemrequest.ItemShape.AdditionalProperties = beAdditionproperties;
    DistinguishedFolderIdType[] faFolderIDArray = new DistinguishedFolderIdType[1];
    faFolderIDArray[0] = new DistinguishedFolderIdType();
    faFolderIDArray[0].Mailbox = new EmailAddressType();
    faFolderIDArray[0].Mailbox.EmailAddress = "[email protected]";
    faFolderIDArray[0].Id = DistinguishedFolderIdNameType.inbox;
    bool moreAvailible = false;
    findItemrequest.ParentFolderIds = faFolderIDArray;
    int loopCount = 0;
    do
    FindItemResponseType frFindItemResponse = esb.FindItem(findItemrequest);
    if (frFindItemResponse.ResponseMessages.Items[0].ResponseClass == ResponseClassType.Success)
    foreach (FindItemResponseMessageType firmtMessage in frFindItemResponse.ResponseMessages.Items)
    Console.WriteLine("Number of Items retreived : " + ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length);
    if (firmtMessage.RootFolder.IncludesLastItemInRange == false)
    moreAvailible = true;
    else
    moreAvailible = false;
    ((IndexedPageViewType)findItemrequest.Item).Offset += ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items.Length;
    Console.WriteLine("Offset : " + ((IndexedPageViewType)findItemrequest.Item).Offset);
    if (firmtMessage.RootFolder.TotalItemsInView > 0)
    foreach (ItemType miMailboxItem in ((ArrayOfRealItemsType)firmtMessage.RootFolder.Item).Items)
    Console.WriteLine(miMailboxItem.Subject);
    else
    throw new Exception("error " + frFindItemResponse.ResponseMessages.Items[0].MessageText);
    } while (moreAvailible);
    The support people should be able to help you as long as you can get past the first level. The EWS Managed API has a RequestId header that gets submitted with requests
    http://blogs.msdn.com/b/exchangedev/archive/2012/06/18/exchange-web-services-managed-api-1-2-1-now-released.aspx . In theory they should be able to take this and then from the Logs tell more information about why your request failed etc.
    Cheers
    Glen

  • Facebook inbox notifications are no longer showing with new OS 4.5

    Hi all:
    I have a Curve 8310 with ATT. Just downloaded the new os 4.5 and got the facebook reinstalled so that I can see the icon. However, now when I get messages through my facebook inbox, notifications no longer appear on the home screen. On fact, the new emails are not showing up at all. Any thoughts?

    Hello and Welcme to the Frums!
    Go to your facebook on your pc and check your notifications.  When I downloaded the 4.5 I had to reset all my notifications.  Somehow  it reset them!  Let us know if that is it! 
    Have a blessed day
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • When I try to send a photo to facebook an error message comes up.  It tells you to try again but when I do it still comes up error.

    When I try to send a photo to facebook an error message comes up.  It says to try again later which I have done several times.  The same error message comes up.  I have sent photos before and didn't have this problem and don't know why there is one now.

    Relaying is when you are using an @xxx.com service but the return address in the email is [email protected]  ISPs prevent relaying to stop spam.

  • Facebook Authentication Error Message 2/26/12

    Is the Facebook app. for the Droid down today?  I ask because my Droid hasnt been working properly lately and I have no idea if its just my phone or if the whole Facebook app for the Droid not working?  Sorry for a silly question.

    It started working a few hours after i posted this.  the issues i have been having is that the the phone freezes and does force close.  it will also automatically change the time to a completely random time zone.  i get that authentication error message even on my email account that is synced to the droid.
    overall i like my droid, it just seems very temperamental.
    thanks for your response.
    Date: Mon, 27 Feb 2012 09:15:50 -0700
    From: [email protected]
    To: [email protected]
    Subject: - Re: Facebook Authentication Error Message 2/26/12
                                                                                    Re: Facebook Authentication Error Message 2/26/12
        created by Cody21 in DROID X by Motorola - View the full discussion
    Are you still having the problem? Mine was working fine yesterday when you posted that question, as it is today. when you say "not working properly", can you be more specific?
         Reply to this message by replying to this email -or- go to the message on Verizon Wireless Community
         Start a new discussion in DROID X by Motorola by email or at Verizon Wireless Community
                                            © 2011 Verizon Wireless
                                            Verizon Wireless | One Verizon Way | Mail Code: 180WVB | Basking Ridge, NJ 07920
                                            We respect your privacy.  Please review our privacy policy for more information.
                                          Not interested in these emails anymore, or want to change how often they come? Update your email preferences.

  • Bridge and Facebook connection error

    I am trying to use the export feature of Bridge C.04.05.11 to download photos to Facebook.  I continually get the error "Facebook connection error - An active access token must be used to query info about current user".  Has anyone else seen this error?
    Bob

    Hi Bob,
    Are you using Bridge CS5 4.0.5.11? Did you see the error when uploading via an old Facebook preset? If yes, you might need to create a new preset (login use your account again.) and delete the old one.
    By the way, we published a new Facebook service update for Bridge CS5. When you attempt to use Facebook service, the update will be automatically executed.
    Thanks
    Chenglong

  • Any ideas on and error that says:  The operation couldn't be completed. (com.facebook.sdk error 2.)

    I got an error stating: the operation couldn't be completed.  (com.facebook.sdk error 2.)  Any ideas on what is wrong?

    10shamrocks wrote:
    I got an error stating: the operation couldn't be completed.  (com.facebook.sdk error 2.)  Any ideas on what is wrong?
    Not really. Never used Facebook. I'm perfectly content without social media.

  • Facebook authentication error

    I'm on a Mac. I published successfully in Facebook once; every time since then I get an authentication error notice. I've looked at (dated) forums but can't figure out what to do. Do I uninstall/delete the plug-in from Lightroom? from Facebook? Step by step instructions greatly appreciated!

    It started working a few hours after i posted this.  the issues i have been having is that the the phone freezes and does force close.  it will also automatically change the time to a completely random time zone.  i get that authentication error message even on my email account that is synced to the droid.
    overall i like my droid, it just seems very temperamental.
    thanks for your response.
    Date: Mon, 27 Feb 2012 09:15:50 -0700
    From: [email protected]
    To: [email protected]
    Subject: - Re: Facebook Authentication Error Message 2/26/12
                                                                                    Re: Facebook Authentication Error Message 2/26/12
        created by Cody21 in DROID X by Motorola - View the full discussion
    Are you still having the problem? Mine was working fine yesterday when you posted that question, as it is today. when you say "not working properly", can you be more specific?
         Reply to this message by replying to this email -or- go to the message on Verizon Wireless Community
         Start a new discussion in DROID X by Motorola by email or at Verizon Wireless Community
                                            © 2011 Verizon Wireless
                                            Verizon Wireless | One Verizon Way | Mail Code: 180WVB | Basking Ridge, NJ 07920
                                            We respect your privacy.  Please review our privacy policy for more information.
                                          Not interested in these emails anymore, or want to change how often they come? Update your email preferences.

  • Facebook certificate error

    How do I fix a Facebook certificate error? I cannot use the website if I click continue or cancel.
    Invalid URL
    The requested URL "/", is invalid.
    Reference #9.6691db8.1407404854.65bab9d
    This is the message if I type in facebook to the address bar.

    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If nothing above helped, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Phone Log, Block of Emails, Facebook Inbox all Deleted

    Yesterday my phone log went blank, and now no new items get added to it when I call out.
    At the same time all my emails between Feb 19 and Sept 29 disappeared.
    Also my facebook inbox also was deleted.
    I've verified memory (i have lots of memory available)
    I tried removing the battery and rebooting...still no results.
    Any help would be appreciated.
    Shane
    Solved!
    Go to Solution.

    JSanders, I agree, these numbers are not that bad...
    Facebook from what I understand, only parses email to it's special inbox.
    I don't know enough about this applcation as I don't use it. 
    After searching posting surrounding this app, it does not appear to be a memory hog but seems to be involved when users are posting and losing information... I am not throughly convinced this is a problem app. That's why I figure to unload it and just see how the phone behaves.
    Good luck and let us know how your doing...
    H.
    +++++++++++++++++++++++++++++++++++++++++++++++++
    If successful in helping you, please give me kudos in my post.
    Please mark the post that solved it for you!
    Thank you!
    Best Regards
    hmeister

  • Facebook connection error in Bridge CS6 - Windows 8.1

    Good evening all!
    I have an HP Pavillion Laptop with and i5 and 12gigs RAM running Windows 8.1
    CS6 Master Collection
    Action:
    Bridge / Export to Facebook
    From export panel select Facebook module.
    Select add present
    Select "Sign Into Facebook
    Error:"An error occurred when request Facebook Connection"
    I read in another forum that others were having this problem too but no solution and that post was from a year ago. I am hoping that this has be solved and one of you good folks knows how.
    Thank you for your attention

    CCSDSoftware wrote:
    We did not experience these issues at all on Windows 7.
    Thoughts?
    I'm trying my best here, but you are making it really difficult...

  • Facebook, google ERROR sec_error_unknown_issuer in Fresh Firefox 35 windows 8.1

    Windows 8.1 64-bit
    Firefox 35 (Latest)
    - Fresh Installed firefox 35
    - Even refreshed Firefox with safe-mode
    - when opening page google.com, facebook.com (Attached Image) getting error page that should not be the error/exception.
    - This is not for the first time even in past I had got this error for google.
    Why firefox developer is neglecting this every time they introduce newer version.?

    hello raviparekh027, thanks for providing the screenshots.
    as this problem might have different external causes please provide another piece of information:
    when you attempt to add an exception on the bottom of the error page (don't do it for real though!) & inspect the certificate, '''which issuer information''' does the certificate contain? (see screenshot)
    thank you!

  • Schedule report to multiple Inbox errors

    XI R1
    I've got users that need to schedule a job to goto multiple inboxes.
    When the report runs it fails with this message
    recipient error. no destination objects could be found (possible empty or invalid user or user group, or security restriction?):
    I've tried it as a member of the Administrator group and get the error also.
    Schedule on behalf of other users is Granted
    Is there some other setting I need to change?

    i think its a security issue, by the default installation users can not send files to each others, unless you give them the access right to do it.
    go to the CMC the Administration panel, and then go to inboxes
    click "Rights" and for the "Everyone" Group click "Advanced"
    and give them the "Add objects to the folder "
    i hope it works fine with you
    good luck

  • Contacts/ Gmail & Facebook import error

    I used the rebuild function on my iPhoto library, and tried using Faces in Contacts to update my contacts' photos.
    there is a ! symbol in Contacts in the left section for All Facebook and All Gmail contacts.
    if i click on the ! a popup window says the operation couldnt be completed, (CoreDAVHTTPStatusErrorDomain error 403.)

    not sure how to delete my question, but now the !s are gone

  • Curve 8520 facebook app error 2400

    Help, anyone! Everytime I try to log-in my facebook acct in my blackberry, error 2400 (incorrect email/password) comes up. It works when I log-in using my laptop. When my friend tried logging in using my bb, it had no problem. I also tried changing passwords, but it still would'nt work. Help!

    As I stated above, change the password on your computer to something with all letters. Make the first letter of the password a capital.
    Did i help you with this problem? if so please show your appreciation by clicking the Like button inside of my post. Please remember I am not a RIM employee the support forums are user-to-user, not user-to-RIM.

Maybe you are looking for