<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://developer.myspace.com/Community/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Notifications</title><link>http://developer.myspace.com/Community/forums/107.aspx</link><description>Use this forum to discuss Notifications.</description><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20910.1126)</generator><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/44241.aspx</link><pubDate>Fri, 20 Nov 2009 17:10:47 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:44241</guid><dc:creator>Artavazd</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/44241.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=44241</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m having problem with sending notifications only with single app. it return 409 error code and says&amp;nbsp;&lt;/p&gt;&lt;pre&gt;The page was not displayed because there was a conflict.&lt;/pre&gt;&lt;p&gt;&amp;nbsp;can anyone help me with this?&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/43878.aspx</link><pubDate>Tue, 27 Oct 2009 15:02:49 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:43878</guid><dc:creator>Ganapathy Subramanian Muthu Krishnan</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/43878.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=43878</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi,&lt;/p&gt;&lt;p&gt;&amp;nbsp;Today I tried sending the mediaItems in the notifcation via OAUTH TEST tool. It worked fine. But, When I tried sending a normal notification via my application code, I am getting timed out error. Please have a look at the below code and let me know what is wrong with the code. &lt;/p&gt;&lt;p&gt;public function sendAppNotifications($receivers,$returnType=&amp;#39;array&amp;#39;)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; try{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $resource_uri = &amp;#39;/v1/applications/112316/notifications&amp;#39;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $parameters[&amp;#39;recipients&amp;#39;]=&amp;#39;402246408&amp;#39;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $parameters[&amp;#39;templateParameters&amp;#39;]=&amp;#39;{&amp;quot;content&amp;quot;:&amp;quot;Notification Content Goes Here&amp;quot;,&amp;quot;button0_surface&amp;quot;:&amp;quot;canvas&amp;quot;,&amp;quot;button0_label&amp;quot;:&amp;quot;Go To Canvas&amp;quot;, &amp;quot;button1_surface&amp;quot;:&amp;quot;appProfile&amp;quot;,&amp;quot;button1_label&amp;quot;:&amp;quot;Go To App Profile&amp;quot;}&amp;#39;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $resource_signed_request = $this-&amp;gt;getSignedRequestUri($resource_uri,NULL,&amp;quot;POST&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $rest = new restClient();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $rest-&amp;gt;createRequest($resource_signed_request,&amp;quot;POST&amp;quot;,$parameters);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $rest-&amp;gt;sendRequest();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $res = $rest-&amp;gt;getResponse();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; if ($returnType == &amp;#39;xml&amp;#39;){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return $res;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }else{&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $xmlparser = new xml2Array();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; $outputarray= $xmlparser-&amp;gt;parse($res);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; return $outputarray;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }catch (Exception $e){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; throw new Exception($e-&amp;gt;getMessage());&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&lt;br /&gt;Thanks in advance,&lt;/p&gt;&lt;p&gt;&amp;nbsp;M.S.M.Ganapathy &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/43421.aspx</link><pubDate>Thu, 17 Sep 2009 18:06:40 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:43421</guid><dc:creator>Test User</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/43421.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=43421</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Ganapathy,&lt;/p&gt;&lt;p&gt;I&amp;#39;ll look into it. Can you tell me what the values you passed to the mediaItems variable. Did you use the logical reference to media items? &lt;/p&gt;&lt;p&gt;BTW: Please open new threads for different issues. Makes it easier for me to track.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Thanks, &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Marco &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/43149.aspx</link><pubDate>Fri, 04 Sep 2009 06:23:35 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:43149</guid><dc:creator>Ganapathy Subramanian Muthu Krishnan</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/43149.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=43149</wfw:commentRss><description>&lt;p&gt;Hi Macro,&lt;/p&gt;&lt;p&gt;&amp;nbsp;When i was trying to send test notifications via test tool, without any mediaItems it works fine. But When i was trying with mediaItems I am getting the response as {&amp;quot;statusCode&amp;quot;:&amp;quot;400&amp;quot;,&amp;quot;statusDescription&amp;quot;:&amp;quot;mediaItems parameter is invalid.&amp;quot;}. Even if i tried by changing the userid alone in the sample, which is given in &amp;quot;http://wiki.developer.myspace.com/index.php?title=POST_v1_applications_applicationId_notification&amp;quot; it is not working.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; Please look into the issue and let me know what could be wrong.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;Thanks in advance... &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42745.aspx</link><pubDate>Thu, 13 Aug 2009 02:43:09 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42745</guid><dc:creator>Nikhil</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42745.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42745</wfw:commentRss><description>&lt;p&gt;Hey There, &lt;/p&gt;&lt;p&gt;Is there anyone who can look into the problem and let me know what could be wrong. &lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42672.aspx</link><pubDate>Fri, 07 Aug 2009 05:35:23 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42672</guid><dc:creator>Nikhil</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42672.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42672</wfw:commentRss><description>Hey, 

Even we are seeing the same problem I post using the OAuth Testing Tool and it returns with &amp;quot;{&amp;quot;postnotificationstatus&amp;quot;:&amp;quot;posted&amp;quot;}&amp;quot; but never see it in the User&amp;#39;s Notifications. I tried this both from my app and from the Myspace tool and both return success but nothing on the User&amp;#39;s page. Can you please help.

Thanks
Nikhil

Here are more details
POST /v1/applications/114748/notifications</description></item><item><title>Error:send Notification only works for onsite application??</title><link>http://developer.myspace.com/Community/forums/thread/42496.aspx</link><pubDate>Thu, 30 Jul 2009 08:03:16 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42496</guid><dc:creator>Biraj</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42496.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42496</wfw:commentRss><description>&lt;p&gt;i have developed application in asp.net using oAuth and also open Auth.&lt;b&gt;(RestV1)&lt;/b&gt;&lt;/p&gt;&lt;p&gt; i am getting all data from MySpace but can&amp;#39;t send notification to friends.&lt;/p&gt;&lt;p&gt;i am usingcode&lt;/p&gt;&lt;p&gt;myspaceClient.SendNotification(490747817, recipients, &amp;quot;Hello MySpaceDemo From Biraj (TechSture Tech)&amp;quot;, MySpaceID.SDK.Config.NotificationSurface.AppProfile, &amp;quot;button AppData&amp;quot;, MySpaceID.SDK.Config.NotificationSurface.AppProfile, &amp;quot;Button AppData&amp;quot;, null);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;is it right? &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br /&gt;&lt;/p&gt;&lt;p&gt;how i can send notification to friends using open auth or oAuth.&lt;/p&gt;&lt;p&gt;Thanks for reading mt issue &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42431.aspx</link><pubDate>Tue, 28 Jul 2009 15:44:12 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42431</guid><dc:creator>Test User</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42431.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42431</wfw:commentRss><description>&lt;p&gt;Federico,&lt;/p&gt;&lt;p&gt;Can you let meknow yor application and how I can raise one notification. I can investigate what the issue might be.&lt;/p&gt;&lt;p&gt;One thing I noticed that sometimes notifications are raised with invalid html. (E.g. forget a closing tag..)&lt;/p&gt;&lt;p&gt;Marco &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42407.aspx</link><pubDate>Mon, 27 Jul 2009 18:35:53 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42407</guid><dc:creator>Federico</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42407.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42407</wfw:commentRss><description>&lt;p&gt;I&amp;#39;m getting this response when I send notifications, but never arrives.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;HTTP/1.1 201 Notification sent&lt;br /&gt;Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0&lt;br /&gt;Pragma: no-cache&lt;br /&gt;Content-Length: 35&lt;br /&gt;Content-Type: application/json; charset=utf-8&lt;br /&gt;Expires: Sun, 19 Nov 1978 05:00:00 GMT&lt;br /&gt;Server: Microsoft-IIS/6.0&lt;br /&gt;Set-Cookie: MSCulture=IP=74.208.15.90&amp;amp;IPCulture=en-US&amp;amp;PreferredCulture=en-US&amp;amp;PreferredCulturePending=&amp;amp;Country=VVM=&amp;amp;ForcedExpiration=633842829641856983&amp;amp;timeZone=0&amp;amp;myStuffDma=&amp;amp;myStuffMarket=&amp;amp;USRLOC=QXJlYUNvZGU9NjEwJkNpdHk9V2F5bmUmQ291bnRyeUNvZGU9VVMmQ291bnRyeU5hbWU9VW5pdGVkIFN0YXRlcyZEbWFDb2RlPTUwNCZMYXRpdHVkZT00MC4wNTQ4JkxvbmdpdHVkZT0tNzUuNDA4MyZQb3N0YWxDb2RlPTE5MDg3JlJlZ2lvbk5hbWU9UEE=; domain=.myspace.com; expires=Wed, 26-Aug-2009 16:16:04 GMT; path=/&lt;br /&gt;Set-Cookie: ASP.NET_SessionId=dy3iqt55w1tw4455jtpu3e55; path=/; HttpOnly&lt;br /&gt;X-Server: a93ae998042931b7292d4aaae565f817976de6f4f1c0cf96&lt;br /&gt;Set-Cookie: SessionDDF1=5c4eb86d28de9bcd4e304b27cb1de4ef33f5c39c672fa8d0; domain=.myspace.com; path=/&lt;br /&gt;Set-Cookie: SessionDDF2=16f07c018684014ca4317103bc6ba67d2d7fe252220234d3; domain=.myspace.com; path=/; expires=Wednesday, 27-Jan-10 16:16:04 GMT&lt;br /&gt;Date: Mon, 27 Jul 2009 16:16:03 GMT&lt;br /&gt;&lt;br /&gt;{&amp;quot;postnotificationstatus&amp;quot;:&amp;quot;posted&amp;quot;} &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42174.aspx</link><pubDate>Mon, 13 Jul 2009 15:22:42 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42174</guid><dc:creator>Test User</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42174.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42174</wfw:commentRss><description>&lt;p&gt;Unfortunately some apps were sending notifications to arbitrary users (this is also known as spam). This caused some queueing in the system. These app have been muted (not allowing any communications with any of the users)&amp;nbsp; &lt;/p&gt;&lt;p&gt;We&amp;#39;ve made some improvements in our code to better handle this in the future, but that has not rolled into production yet. So we are temporary working with a delay. But all notifications do get delivered. &lt;/p&gt;&lt;p&gt;Note that end users can block your app from receiving your notifications. So use this communication channel appropriate.&lt;/p&gt;&lt;p&gt;Note 2: Activity events are now also showing to all users.&amp;nbsp; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42139.aspx</link><pubDate>Fri, 10 Jul 2009 17:10:51 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42139</guid><dc:creator>FOX Sports</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42139.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42139</wfw:commentRss><description>&lt;p&gt;Marco,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m seeing the same thing, where the REST calls are returing success but the notifications are not being sent.&amp;nbsp; In fact I had one batch the was sent at 5:30 PM yesterday and I received in my inbox at 1:44 AM today.&amp;nbsp;&amp;nbsp; I cannot verify if the others were delivered.&amp;nbsp; There were a number notifications total -- all sent in batches.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;Tom&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42072.aspx</link><pubDate>Tue, 07 Jul 2009 06:13:44 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42072</guid><dc:creator>Test User</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42072.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42072</wfw:commentRss><description>When you send multiple notifications you will receive a &amp;#39;posted&amp;#39; 201 back when at least one succeeds.
Users can unselect &amp;#39;Receive notifications from this app&amp;#39; or can block all communication from your app.

You do not get feedback from us when one or more recipients do not want to receive your notification.</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42065.aspx</link><pubDate>Tue, 07 Jul 2009 00:32:23 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42065</guid><dc:creator>Tatung</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42065.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42065</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;The problem I am still seeing today is that not all the notifications show up in the user&amp;#39;s Notification inbox.&amp;nbsp; It seems some are not being delivered even though the return code when posted them via. REST are all &amp;quot;posted&amp;quot;.&lt;/p&gt;&lt;p&gt;&amp;nbsp;-Tatung &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42053.aspx</link><pubDate>Mon, 06 Jul 2009 17:47:01 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42053</guid><dc:creator>Test User</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42053.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42053</wfw:commentRss><description>&lt;p&gt;We are always actively fighting spam;&amp;nbsp;&lt;img src="http://developer.myspace.com/community/emoticons/emotion-5.gif" alt="Wink" /&gt; &lt;/p&gt;&lt;p&gt;The rules are: &lt;br /&gt;&lt;/p&gt;&lt;ol&gt;&lt;li&gt;a notification will only be stored for 7 days&lt;/li&gt;&lt;li&gt;only the last 5 notifications are stored &lt;/li&gt;&lt;/ol&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We are currently working on some optimalization. The feature is a bit more popular than anticipated, and we are getting A LOT of the notifications.&lt;/p&gt;&lt;p&gt;Once we have the system happy we will also show an indicator to the user that (s)he has a new notification.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Marco &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>REST based app notifications problem</title><link>http://developer.myspace.com/Community/forums/thread/42005.aspx</link><pubDate>Fri, 03 Jul 2009 01:04:41 GMT</pubDate><guid isPermaLink="false">8e485011-333f-425c-b84a-1febdb8bfab0:42005</guid><dc:creator>Tatung</dc:creator><slash:comments>0</slash:comments><comments>http://developer.myspace.com/Community/forums/thread/42005.aspx</comments><wfw:commentRss>http://developer.myspace.com/Community/forums/commentrss.aspx?SectionID=107&amp;PostID=42005</wfw:commentRss><description>&lt;p&gt;Our application successfully sends app to user notifications until today.&amp;nbsp; Today we still get the &amp;quot;posted&amp;quot; response so it looks like everything is fine but the notification doesnt show up in the user&amp;#39;s notification box.&amp;nbsp; It will show only occassionally.&amp;nbsp; Looks like MySpace is doing something to cut down on &amp;quot;spam&amp;quot;?&amp;nbsp; Is this correct and what rules are being used?&lt;/p&gt;&lt;p&gt;&amp;nbsp;-Tatung &lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>