Getting Error in AppPart "The feed you've requested does not exist."

I am getting " The feed you've requested does not exist." Error while app-part is getting loaded on
a page. It works well while we open the app alone. The feed we are using is Yammer feed.
Ashish Baranwal || To know what you know and what you do not know, that is true knowledge

Issue confirmed and addressed by MS. From the O365 portal:
Closure Summary: On Wednesday, September 24, 2014, at approximately 6:40 PM UTC, engineers identified an issue in which some customers may have been unable to use the embed feature in Yammer. The investigation determined that a small portion of infrastructure
which processes authentication was degraded. Engineers implemented a fix which remediated end-user impact. The issue was successfully fixed on Wednesday, September 24, 2014, at 8:50 PM UTC. Upon analysis of the incident, service impact was determined to be
limited. Next steps have been identified and will be implemented to ensure that the issue does not reoccur. Please consider this Closure Summary the final update on the event. 
Our feeds are working now.

Similar Messages

  • Yammer open graph feed, "The feed you've requested does not exist."

    When using the open graph embed feed for a page on which there are no comments yet, I am getting "The feed you've requested does not exist." in the embed frame. Once I post a comment (which works fine), the message disappears. I see the
    same in the https://www.yammer.com/widget/configure page. Is this an issue that can be resolved on the Yammer end?

    Hi,
    which is your environment, SharePoint Server 2013 or SharePoint Online?
    For Yammer Embed to work, your SharePoint environment must satisfy the following prerequisites: 
    Your organization should have an active Yammer network (for example: www.yammer.com/contoso.com)
    Your SharePoint farm admin should choose Yammer.com service as the default enterprise social collaboration   platform. Set this option in the SharePoint admin center for SharePoint Online and in SharePoint Central Administration for on-premises
    SharePoint Server 2013.   Choose the yammer.com service and wait for 30 minutes before moving on to the next step.
    For more information,please refer to the blog:
    https://support.office.com/en-us/article/Embed-a-Yammer-feed-into-a-SharePoint-site-4817d2fa-50f6-4f25-88a0-a312745768d4
    http://blogs.msdn.com/b/chhopkin/archive/2013/11/20/yammer-embed-and-sharepoint-2013.aspx
    https://technet.microsoft.com/library/dn270535?f=255&MSPPError=-2147217396
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Yammer used for page comments in SharePoint Online, initially says "The feed you've requested does not exist"

    I am trying to use Yammer for a per-page comment platform. This seems to require placing a Yammer embed in each page and configuring the embed to use Open-Graph.
    Why does the feed initially say "The feed you've requested does not exist." for every new page? The default should read "There are no messages
    in this feed."
    My embed code looks like this:
    <div id="embedded-feed" style="height:400px;width:500px;"></div>
    <script type="text/javascript" src="https://assets.yammer.com/assets/platform_embed.js"></script>
    <script type="text/javascript"> yam.connect.embedFeed({
    container: "#embedded-feed"
    , network: "myyammernetwork.com"
    , feedType: "open-graph"
    , config: {
    use_sso: false
    , showOpenGraphPreview: false
    , header: false
    , footer: false
    , promptText: "Comment on this page..."
    , objectProperties: { url: window.location.href, type: "page" }
    </script>
    You can see at the following link, following the instructions, it results in "there are no messages in this feed."
    https://support.office.com/en-us/article/Use-Yammer-Embed-instead-of-the-Yammer-app-for-SharePoint-2013-and-SharePoint-Online-812c752b-3586-4f67-accb-49cd3724dcc1?ui=en-US&rs=en-US&ad=US#CommentFeed

    Hi,
    which is your environment, SharePoint Server 2013 or SharePoint Online?
    For Yammer Embed to work, your SharePoint environment must satisfy the following prerequisites: 
    Your organization should have an active Yammer network (for example: www.yammer.com/contoso.com)
    Your SharePoint farm admin should choose Yammer.com service as the default enterprise social collaboration   platform. Set this option in the SharePoint admin center for SharePoint Online and in SharePoint Central Administration for on-premises
    SharePoint Server 2013.   Choose the yammer.com service and wait for 30 minutes before moving on to the next step.
    For more information,please refer to the blog:
    https://support.office.com/en-us/article/Embed-a-Yammer-feed-into-a-SharePoint-site-4817d2fa-50f6-4f25-88a0-a312745768d4
    http://blogs.msdn.com/b/chhopkin/archive/2013/11/20/yammer-embed-and-sharepoint-2013.aspx
    https://technet.microsoft.com/library/dn270535?f=255&MSPPError=-2147217396
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • User Executes Stored Procedure That Executes sp_send_dbmail; receives email but also gets error Cannot alter the queue 'ExternalMailQueue', because it does not exist or you do not have permission.

    Using SQL Server 2012 SP1
    I have a user that is submitting a procedure that uses sp_send_dbmail.  I have also noticed that they have the following code in their procedure
    DECLARE @rc INT
    IF NOT EXISTS (SELECT * FROM msdb.sys.service_queues
    WHERE name = N'ExternalMailQueue' AND is_receive_enabled = 1)
    EXEC @rc = msdb.dbo.sysmail_start_sp
    The user submits the procedure and she gets the email but she also gets the following error message:
    Msg 15151, Level 16, State 1, Procedure sysmail_start_sp, Line 8
    Cannot alter the queue 'ExternalMailQueue', because it does not exist or you do not have permission.
    Mail (Id: 2402) queued.
    (1 row(s) affected)
    I have granted execute to sp_send_dbmail and sysmail_start_sp.  I have also granted select to service_queues.
    Does anyone have any solutions for the above error message?
    lcerni

    The contents of sysmail_start_sp is this:
    CREATE PROCEDURE sysmail_start_sp
    AS
        SET NOCOUNT ON
        DECLARE @rc INT
       DECLARE @localmessage nvarchar(255)
        ALTER QUEUE ExternalMailQueue WITH STATUS = ON
        SELECT @rc = @@ERROR
        IF(@rc = 0)
        BEGIN
          ALTER QUEUE ExternalMailQueue WITH ACTIVATION (STATUS = ON);
           SET @localmessage = FORMATMESSAGE(14639, SUSER_SNAME())
           exec msdb.dbo.sysmail_logmailevent_sp @event_type=1, @description=@localmessage
        END
    RETURN @rc
    The user get the error, because she does not have any permission on the queue in question. To be able to alter the queue, the following applies according to Books Online:
    Permission for altering a queue defaults to the owner of the queue, members of the db_ddladmin or db_owner fixed database roles, and members of the sysadmin fixed server role.
    Note that is would be db_ddladmin or db_owner in msdb. Now, supposedly the queue is already active, and in that case I think that it is sufficient that the user has VIEW DEFINITION on the view. This would permit her to see the row in sys.service_queues,
    why there would be no need to call sysmail_start_sp.
    Altertanively, change the check to:
    DECLARE @isenabled bit
    SELECT @isenabled = (SELECT is_receive_enabled FROM msdb.sys.service_queues
                   WHERE name = N'ExternalMailQueue')
    IF @isenabled = 0
       EXEC @rc = msdb.dbo.sysmail_start_sp
    The idea here is that, if the user has no permission to read the information in the DMV, @isenabled will be NULL, and you just pray and hope that the queue is up and running.
    I suspect that the reason this worked for you on SQL 2005 is that on that instance someone at some point in made all the required configurations for it to work, but all that is forgotten now. That happens to me too.
    If you really want the user to be able to start the queue, I have some better ideas than adding her to a role, but I skip the details for now.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Error: An error occurred importing the file. Detail: File does not exist or

    Hi,
    I am getting the error the below error while importing the file in FDM. I have read and write access to the folder. I tried loading text and excel files, I am getting the same error.
    An error occurred importing the file.
    Detail: File does not exist or access denied.
    Thanks.

    Hi Tony,
    Thanks for the reply.
    I have Oracle Database and the version is 11.1.0.7; So even for this version do I need to have SQLLDR.exe on the server where FDM is installed.
    Thanks,
    Edited by: user10720012 on May 16, 2011 11:42 AM

  • Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.

    I am trying to connect to SharePoint in my Office 365 environment by following https://support.office.com/article/Set-up-the-SharePoint-Online-Management-Shell-environment-7b931221-63e2-45cc-9ebc-30e042f17e2c and I am getting:
    Connect-SPOService : The Application ID (AppID) for which the service ticket is requested does not exist on the system.
    Is there some setting I need to change on the O365 side? Thanks.

    Hi,
    Based on your description, my understanding is that you want connect SharePoint Online using PowerShell.
    Please make sure that the following software is installed.
    Windows Management Framework 3.0
    SharePoint Online Management Shell
    And then, open the SharePoint Online Management Shell and use the Script below to test
    whether it works.
    $User = "[username]@[tenant].onmicrosoft.com"
    $Pass = "[password]"
    $creds = New-Object System.Management.Automation.PSCredential($User,(ConvertTo-SecureString $Pass -AsPlainText -Force));
    Connect-SPOService -Url https://[tenant]-admin.sharepoint.com -Credential $creds
    Get-SPOSite
    More information:
    http://blog.falchionconsulting.com/index.php/2013/01/using-powershell-to-manage-sharepoint-2013-online/
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Dennis Guo
    TechNet Community Support

  • I cannot log into facebook. I get the following message: 404 Error - Not Found The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request,

    I am not able to go to the facebook site. www.facebook.com is not working. I get the following error message. 404 Error - Not Found
    The resource you have requested could not be found on the server. There are many possible reasons for this. Either the file does not exist, there is an error in your request, or the file is not accessible in the requested directory. Please verify that:
    * You have used the proper case; requests ARE case-sensitive!
    * You have entered the URL correctly. (i.e. proper directory/filename)
    * You used the FULL URL. (i.e. proper file type: .html, .gif , .jpg, etc.)
    * You use a tilde (~) before user directories. (i.e. www.furcen.org/~jurann/ )
    * The user/file still exists on this server.
    I also get redirected to "Busca Google" when typing www.facebook.com in the address bar.
    == URL of affected sites ==
    http://facebook.com; buscagoogle.com

    I have the same problem and it does not have to do with firefox. Do you have any idea how to fix it through?

  • I can get to itunes but when I select anything an error comes up 'your request could not be completed.  The item you've requested is not currently available in the US store'  What is this and how to I fix it?

    no comment

    When I open the store in general (from my PC - Windows Vista), I get a message saying "Your request could not be completed. The item you've requested is not currently available in the Canadian Store."
    On my iPad, Apps opens, but I can't browse new apps listings, but not their details.
    Help?

  • "the item you've requested is not currently available in the indian store"  error while trying to open App Store/iTunes on iPhone

    Hi All,
         Whenever i try to open the App Store/iTunes store on the iphone, i get the error  "the item you've requested is not currently available in the indian store".
    This happens whenever there is link for an App that i want to download and it happens for each and every app which is easily available on iTunes from PC. I dnt know what the problem is because of my friends who has an iPhone is able to access it, so its even more weird.The only difference is that she has an legally unlocked iPhone and i have the "other one". Please help...because it is very frustrating to everytime go on to the PC to download an App.

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 &amp; above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • When computer boots I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link libray CoreFoundation.dll".  I have removed iTunes and all of it's components several times and re-loaded programs.

    When I boot my computer I get error box stating "The procedure entry point _NSConcreteStackBlock could not be located in the dynamic link library CoreFoundation.dll.  I have completely removed iTunes and related programs and reinstalled them several times.  Doesn't fix the issue.  Any ideas on how to fix this?

    You should have one copy of CoreFoundation.dll in C:\Program Files\Common Files\Apple Application Support or C:\Program Files (x68)\Common Files\Apple Application Support if this is a 64-bit Windows.
    The detailed file properties should be as shown.
    If the file you have is correct check to see if there is another copy in the main iTunes folder. If so delete it and see if that helps.
    Otherwise try uninstalling/deleting folders/reinstalling iTunes again. See Troubleshooting issues with iTunes for Windows updates for more details. Your issue looks a bit like it might be a variation of the issue in the first box.
    Also worth checking that you have uninstalled the MobileMe control panel and any third party software that might try to talk to iTunes.
    tt2

  • A error message pops up when I try to click top singles "see all" saying "Your request could not be completed the item you've requested is not currently available in the US store" when a few minutes ago it allowed me to do so.

    A error message pops up when I try to click top singles "see all" saying "Your request could not be completed the item you've requested is not currently available in the US store" when a few minutes ago it allowed me to do so.

    When I open the store in general (from my PC - Windows Vista), I get a message saying "Your request could not be completed. The item you've requested is not currently available in the Canadian Store."
    On my iPad, Apps opens, but I can't browse new apps listings, but not their details.
    Help?

  • I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  I get a message on my phone that says " the URL you are requesting is not found on this server".  Pics and videos have been deleted too.

    I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  When I restored my phone from icloud, half of my pics and videos have been deleted, the pics that were restored on my phone are very blurry, and the videos won't play.  I get a message on my phone that says " the URL you are requesting is not found on this server".  I have erased and reset my phone twice, but every time I do it, more pics and videos are deleted.  I have backed up to icloud and iphoto, however, some of the pics are no longer on iphoto either.  Is there someway to get the videos to play on my phone again?  Make the photos not as blurry as they are now and to restore the pics and videos that have been lost?  I really would love to have them back, this phone is supposed to be the best and right now it doesn't seem to be.  Please help if you can.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • TS1368 Error message accessing iTunes store: "Your request could not be completed. The item you've requested is not currently available in the U.S. store."???

    After updating my iTunes to the newest I cannot access iTunes store.
    When I pess the button "iTunes Store" I get the message: "Your request could not be completed. The item you've requested is not currently available in the U.S. store." Does anybody know what's going on???

    I have this issue too.  I sent an email and got a link to visit the community and find my answer here.  I'm NOT happy with the email I got.  I've been able to see my appleid and then click on Music or Movies but I cannot go to the home screen of the Store.  This is obviously something they will have to do an update for.  We aren't the only ones with this same issue.  I've seen more than one question/subject about this same thing.

  • Error:  The local root folder, ZZZZZZ, does not exist.  Please...

    Dreamweaver newest - Cloud
    Windows 7 Prof 64b SP1
    Everyday now upon firing up Dreamweaver I am getting the same error. As long as I worked on this certain site last the day before, dreamweaver of course tries to load that site upon the next startup.
    The error:  The local root folder, ZZZZZZ, does not exist.  Please choose a new local root folder
    I have typed the path myself and browsed to it many times.  When I go into the Site manager/edit site to correct this, it already has the correct path listed there.  If I just leave what is there and hit save, it doesn't work.  Once re entering is done it allows me to work on the site again. Connecting to remote/upload files and everything works fine.  I can close DW and reopen and all will be fine, for a while.    If I close it and maybe two hours later come back to work on it, DW will report that same error again on startup.
    Other editors of the site with same cloud version of DW and same site settings are not having this error. We've combed for differences.
    I've deleted the site definition altogether and recreated it.  It does not stop the error.
    I found some old references to this issue in the old macromedia forums dealing with Mac and spaces or odd characters being an issue in the local folder path. I'm on windows, but the complaints sounded so similar I decided to try a test suggested there.  Their suggestion was to create a new blank html file, without saving, add some text, select the text, use the link icon in the properties manager to drag a link out to any file in the files panel.  Upon doing so, DW creates a full local path that you can see in your html since you haven't saved the file yet.  The suggestors of this test said you should see if your "mac" and DW was having trouble with spaces or odd characters in the path.   Well the following path shows a PIPE character being created in the path by DW on my test page. 
    file:///W|/private/09 Websites/zzzzzz/index.html
    Could this be showing there is some kind of issue that I need to correct?  Or is this typical?  See the pipe character being listed after the network drive letter of W
    Our local root folder path:
    W:\private\09 Websites\zzzzzz\
    Server Settings:
         Root Directory:
    public_html/zzzzzz.com/
         Web URL:
    HypertextTransferProtocolCOLON//worldwideweb.zzzzzz.commercial/
    Any help or suggestions would be appreciated.

    Sudarshan Thiagarajan wrote:
    remote
    /home/zzzzz/public_html/zzzzz.com
    Is this how your remote setting is defined? If it is, do you have a folder called zzzzz.com on your remote server trailing public_html? Ideally public_html is your website root - index.html resides within that, unless your configuration states otherwise.
    To come to your actual question of the local root folder, yes, your file manager wont show files if the connection fails. However, accessing it depends on the permissions you have on your network drive. Have you checked that?
    I'm not sure why our guy has another folder underneath public_html. My guess is he has some company related hosted test folders for various things under there.  I can see a couple other folders under public_html while checking with filezilla. I suppose he just directed our domain to our web folder under public_html. 
    Again, two others here are using these exact same settings with no root folder errors from DW. We've checked many times and all is the same for them.
      Here are some screen grabs of the settings if this makes it more clear.
    This last one showing the remote connection address under the files/assets panel is the one that looks strange to me.  It shows a home folder / then a folder with our site name / then public_html / then our sitename.com .    Seems convoluted to me.  But it works for everyone else so I'm not sure if this error I'm getting has anything to do with these settings or if there is just some old DW settings file hung up in my system that I need to find and delete or what.
    Thanks for any ideas.

  • I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    I cannot update or install updates on itunes. It says that the location for that file does not exist. I cant even uninstall itunes as the same error message comes up.

    Hi vindog60,
    Thank you for using Apple Support Communities.
    To troubleshoot this issue where you get an installation error with iTunes on your Windows PC, please follow the steps in the article linked to below.
    Issues installing iTunes for Windows - Apple Support
    Cheers,
    Alex H.

Maybe you are looking for

  • Does calendar month view show times

    I'm sure I'm not going crazy but I could have sworn that, until late last night, my iPad 2's calendar when in month view showed event times.  Similar to what you see when you check the "show times in month view" box when in iCal.  I am pretty sure th

  • Can I use sessions to solve a problem?

    I have a set of three pages called say "pick", "edit" and "confirm". The edit page is on one of a set of 5 spry tabbed panels.The server is unix and the machine uses windows 64 bit and CS5.5. Pick uses a drop down list to select an item to edit. It t

  • Crystal report could not show dynamic picture

    I develop crystal report which show dynamically picture in my PC but when I send it to server which has not be installed program just install asp.net framework 2.0 , it could not show dynamic picture. How should I do, please advise.

  • Hitting tab key skips checkboxes, buttons, etc.

    This is my first Mac, so I'm still getting used to the UI, I was hoping someone cold help shed some light on this. When I use the tab key in any application to skip to the next field, it totally ignores the checkboxes and buttons. Is there some way a

  • Photos/Slideshow in Blog

    I am wanting to change the way in which my photos are presented in my blog. Rather than the normal album format, I would like something like this, but with the ability to add captions: http://roddymckay.com/VisualMedia/SimpleViewer.html I like this b