How do I update my feed?

Exactly how do I "update my feed in the fastest possible manner?" See below
After adding a new episode, update your feed in the fastest possible manner with the ping service by visiting this URL:
https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast?id=364602319
http://therealtalkradioshow.podbean.com

Add your episode - if you are using Podbean refer to their help - so that it wil appear in your feed, and publish the feed (i.e. upload it to replace the existing copy on the server: Podbean probably has a 'publish' button). It usually takes 1-2 days for the iTunes Store to pick up new episodes (though subscribers will see them immediately).
'Pinging' the Store using the link you give is supposed to make it check your feed sooner, but I've never been convinced that it makes any difference. It can do no harm, at any rate.
Incidentally the link you give is to the website for your podcast: the actual feed is at
http://therealtalkradioshow.podbean.com/feed

Similar Messages

  • I'm new.  How do I update my feed after posting a new podcast?

    I'm sure this has been asked a bazillion times but i haven't found an answer.
    I just joined iTunes and received a confirmation email that my podcast feed has been accepted.  The email states,
    After adding a new episode, update your feed in the fastest possible manner with the ping service by visiting this URL:
    https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast?id=(ID REMOVED)
    But when I click the link it instead takes me to this link...
    http://itunes.apple.com/us/genre/ios/id36?mt=8&id=(IDREMOVED)
    And I cannot find any option to update my feed.  Please help and thanks!

    Once your feed has been accepted you are given the URL to the iTunes Store, which is presumably what the second link you have posted is.
    You don't have to interact with the Store any further. Just add a new episode to the podcast and re-upload the feed. Subscribers will see the new episode immediately, but it usually takes the Store a day or two, occasionally longer, to catch up.
    Incidentally I don't know where you saw the instruction to ping the Store, but that facility was removed over a year ago. (Not that it ever did much good anyway). The Store will update when it gets round to your feed.

  • ITunes not updating RSS feed.

    I am hoping someone will be able to help me figure this out:
    After a hiatus of several months, I have started releasing new podcast episodes. The last episode in the iTunes store directory was Nov. 14, 2012.
    In the last week I have released 2 new episodes, but since the content was time sensitive I backdated them. I changed the Nov. 14 podcast to July 20 and then added a September 15 and a February 22, 2013 episode.
    The changes show up through iTunes software, but not in the iTunes store. It still shows the last episode as being Nov. 14, 2012. It has been 4 going on 5 days without any changes.
    Also, iTunes is not displaying my podcast logo, even though I have uploaded a 1400 X 1400 jpeg.
    I have checked and the podcast feed validates without a problem.
    I am at a loss as to what to look for or try next. If anyone has any ideas I would be very appreciative for any advice.
    https://itunes.apple.com/jp/podcast/down-to-business-english-business/id36626569 7?l=en&mt=2
    http://www.speakeasytokyo.net/downtobusinessenglish.xml
    http://www.downtobusinessenglish.com
    Thank you.

    Hi Roger,
    I contacted Apple and received this confusing reply (cut and paste below). It is confusing on 2 counts; 1) My feed validates just fine and 2) within minutes of receiving it, iTunes updated my feed to show 2 missing episodes.
    Still, the artwork is not showing and I posted another (backdated) episode over a week ago and it still hasn't shown up in the store yet either.
    I am wondering if I should resubmit my feed as the Apple support email suggests but do not want to loose my current subscribers.
    Any thoughts?
    This is the email I received from Apple:
    Dear Malcolm,
    Welcome to iTunes Store Customer Support. My name is Abdul and I will be happy to assist you.
    I'm sorry to hear that you have been unable to get your podcast listed on the iTunes Store. Addressing your concern is important to me.
    Malcolm, it appears that your podcast's RSS feed is not validating. To help find the problem, you may want to use a feed validator, such as this one:
    http://www.feedvalidator.org
    You can get help with many specific issues, learn how to test a feed, and view a sample feed in the iTunes Making a Podcast page:
    http://www.apple.com/itunes/podcasts/specs.html
    If you can successfully subscribe to your podcast and listen to each of the episodes, try resubmitting the feed to the iTunes Store. If you receive a message that the feed has already been submitted, the iTunes Store is detecting that the podcast is a duplicate. Please follow these steps to resubmit the podcast:
    1) Change the title and link fields of your RSS feed to something other than what they are now.
    2) Resubmit the podcast feed via iTunes.
    3) Once you have successfully submitted the podcast, you can change the title and link fields back to what they were.
    If you're still having trouble, consider consulting the Apple Discussions forums, which have a wealth of information about specific issues. Click Producing Podcasts in the Pro Digital Production area of this page: http://discussions.apple.com
    I hope the above information will help you.
    If you have any further questions, feel free to contact us and we will be happy to assist you.
    Have a nice day!
    Sincerely,
    Abdul
    iTunes Store Customer Support

  • How can I update my app store account ?

    Hi, I have a new Iphone and I wanted to add some applications from apple store.
    Unfortunately, I had a message saying that I was using app store on a new device (true) and they needed to check some security thing from my visa card. Unfortunately, I had a new  card and do not have the previous one anylonger (the previous one expires in 1 year but had to be cancelled).
    Therefore I am blocked and cannot get into my account.
    How can I update my bank account and get into the apple store again ?
    Thanks
    Nadiege

    Great, it worked. i could update the account from the laptop (but not from the phone).
    Many thanks for such a swift feedback !!

  • I upgraded from 3gs and want to use my old 3gs as an ipod. how can i update my new apple ID on the 3gs as it still shows a previous one that I had?

    I recently upgraded from 3Gs to Iphone4 and want to use my old 3Gs as an ipod. how can i update
    the user ID on the 3gs to a new one that I have as it is still showing a previous user ID?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.

  • How can i update data in JTable at run time ?

    i am trying to build a client/server architecture for conducting quizzes & online tests.. My client will return a object to the server after the test is over, which contains details about the participant, his score and other details. i am putting the incoming object to an Vector. I'll create a new thread each time for the incoming connection and insert the object to the Vector.. Now, please tell me tat, how can i update my table automatically at run time so tat, my table is updated whenever a new object is entered into vector..
    here is my code for the table..
    public class MyTableModel extends AbstractTableModel {
        String columNames[] = { "ID", "NAME", "COLLEGE", "SCORE", "CELL" };
        /** Creates a new instance of MyTableModel */
        public MyTableModel() {
            Main.List = new Vector();
            SetDefaultData();
        public int getRowCount() {
            return Main.List == null ? 0 : Main.List.size();
        public int getColumnCount() {
            return columNames.length;
        public String getColumnName(int column) {
            return columNames[column];
        public boolean isCellEditable(int row,int col) {
            return false;
        public Object getValueAt(int rowindex, int columnindex) {
            if(rowindex < 0 || rowindex >= getRowCount())
                return "";
            Student row = (Student)Main.List.elementAt(rowindex);
            switch (columnindex)
                case 0 : return row.id;
                case 1 : return row.name;
                case 2 : return row.college;
                case 3 : return row.score;
                case 4 : return row.cell;
            return "";
        public String getTitle() {
            return "Student Table";
        private void SetDefaultData() {
            Main.List.removeAllElements();
            Main.List.addElement(new Student("CS041","Keerthivasan M","MNM",95,"9884326321"));
            Main.List.addElement(new Student("CS012","Arun M","MNM",90,"9884825780"));
            Main.List.addElement(new Student("CS019","Balaji S","MNM",79,"9841742068"));
            Main.List.addElement(new Student("CS005","Anand R","MNM",89,"9884130727"));
            Main.List.addElement(new Student("CS045","Manish J","MNM",55,"9841624625"));
            Main.List.addElement(new Student("CS013","Mangal S","MNM",5,"9841961742"));
    }

    In the future Swing related questions should be posted in the Swing forum.
    how can i update my table automatically at run time so tat, my table is
    updated whenever a new object is entered into vector..You don't update the Vector directly. You should be creating a method in your TableModel, called "addRow(...)". This method will do two things:
    a) add the Student object to the Vector
    b) invoke the fireTableRowsInserted(..) method of AbstractTableModel. This will cause the table to be repainted.

  • Steps to put itunes (50 gb) on external drive and delete from imac.  How would I update my ipods and ipad from the external drive if I do this

    I am planning to put itunes library on external hard drive. My Imac is running out of room and itunes is 50+ gb of music.
    What steps do I take to do this.  Also, if I do so, how do I update my ipods and my ipad 2.  I do back up my files with time machine.  This would be a completely separate new external hard drive.  Thanks in advance for any help.

    Two ways:
    1. After transferring to the external drive create an alias to the iTunes Music folder on the external drive.  Copy the alias into your Home folder.  Rename the alias to "iTunes Music."  Delete the alias from the external drive.
    2. In the iTunes preferences click on the Advanced icon in the toolbar.  You should see a field labeled, "iTunes Media Folder Location."  Click on the Change button and select the /iTunes Music/ folder on the external drive.

  • I have osx 10.6.8 and safari 5.1.10, how do I update safari?

    I been using MSN.com as my homepage for some time.  Suddenly I cannot access it using the Safari browser on my iMac.  Instead I get an MSN "preview" page with a message that I am using an outdated browser.  My browser is Safari 5.1.10.  I opened the Apple Menu and chose Software Updates, but it does not provide a Safari update.  How do I update Safari and what version should I use for OSX 10.6.8? 

    Safari is now a part of OS X and there are different versions (5, 6 and 7) of it.
    To update Safari you must update OS X.

  • How can we update data in LDAP server using PL/SQL.

    Hi,
    How can we update data in LDAP server using PL/SQL program.
    Is there any sample code for refrence.
    Thanks,
    Tarun

    Hi Justin,
    Thanks for your help. You got my correct requirements.
    Tim's example returning all the attributes of current user which is admin user. Please correct me if I am wrong.
    I have the following information:
    the admin user and password,server info , port and ldap_base for admin.
    I have uid and password for regular user, I am trying find the ldap_base for regular user, which may be different from adminuser.
    Please help me.
    Thanks,
    Edited by: james. on Jan 12, 2009 5:39 PM

  • HT1819 How can I update an existing episode of my submitted Podcast?

    I have just launched a podcast and the feed has been accepted by iTunes (https://itunes.apple.com/gb/podcast/saving-next-christmas-part-1/id767756348?i=1 95161397&mt=2).
    However, I have made certain imporvements to it and have since uploaded a replacement MP3 to my independently hosted site and amended the RSS feed so that only the updated MP3 is present (http://www.valleyofdump.com/category/podcasts/feed/).
    Nonetheless, when I open iTunes, only the old version of the MP3 plays. Will the update feed through in time to iTunes, or will I have to manually prompt it to recognise the update MP3 in the feed?
    Hope someone can help. Thanks!

    The file referenced in the feed is
    http://www.valleyofdump.com/wp-content/uploads/2013/12/Savingnextxmaspt1-TAKE-3. mp3
    I subscribed to your podcast and downloaded the file: although it turns up with the title as the filename, the duration is the same - 11m 54.57 seconds. So I assume that this is working correctly. However, this is a fresh subscription. Anyone, including you, who subscribed previously would have the original version in iTunes and as I assume you haven't changed the 'guid' tag would have no way of knowing it had been updated.
    If you had subscribed previously, delete the subscription and subscribe again; you should find you now have the later version. You can only get existing subscribers to get the new version by making it in effect a new episode, and they may not thank you for having to download it again.
    In the iTunes Store itself the file plays, but I've no way of knowing which version it is, however if you have removed the older version from the server it could only be the later one (have you removed it?). If the Store has not updated the feed yet it would try to download the old one; it may well not update until a new episode has been added since if the 'guid' tag hasn't changed it has no way of knowing the feed has changed.

  • How to have a live feed from application server log file (realtime viewr )

    how to have a live feed from application server log file (realtime viewr for apps log files)
    hi , thank you for reading my post.
    is there any way to have a live feed of Application server log ?
    for example is there any application that can watch the log file and show the changes as new log items come in ?
    can some one with more experience help ?

    Your question would be more suited to the Developer Forums
    http://devforums.apple.com
    but anyway...
    My goal is to develop a web application that is able to run on iPhone too, to capture the audio and video content from its camera and mic.
    Web Apps running in Safari don't have access to the camera or mic hardware.
    Or I should built a native application distributed through Apple store?
    That is your only option, although such a system already exists:
    http://itunes.apple.com/us/app/ustream-live-broadcaster/id319362690?mt=8

  • HT3576 Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    You have a 1st generation iPod Touch. It can not be upgraded beyond iOS 3.1.3, it is available at the link below.
    http://support.apple.com/kb/HT2052

  • How do I update my ipod touch with my  new email address for my  itunes account?

    How do I update my ipod touch with my new email address for my itunes account?  I recently changed my email address and updated it on my itunes account but now my ipod keeps asking me for the password associated with my old email address.

    I did this and I still get a error message about either the
    password or the email account is incorrect!

  • How do I update my Macbook Air 10.6.8 to a newer version?

    How do i update my Macbook Air 10.6.8 to a newer version

    Open the Mac App Store and try downloading Mavericks. If you get told it's incompatible, choose About this Mac from the Apple menu, click here, and order a download code for Lion 10.7.
    Mac OS X 10.7 and newer don't support PowerPC programs such as Microsoft Office 2004.
    (97791)

  • How do i updates itunes on a macbook pro 2009 10.5.8 to newer 10.6.8

    Hey guys i hope someone can help me. I recenlty brought an older model macbook pro 2009 with itunes 10.5.8 on it. for a great low price of $ 300 dollars. How ever i cant update a newer version of itunes to replace the 10.5.8. So everytime I plug my new ipad into the older mac it says i need itunes 10.6.8 or higher. how do i update to a newer version for free???? youtube was not helpful or goole. So  I am stuck.

    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.

Maybe you are looking for