Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6144301
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:37:49+00:00 2026-05-23T18:37:49+00:00

I need to load an xml feed from vimeo, for this I am using

  • 0

I need to load an xml feed from vimeo, for this I am using jquery like this:

$(function(){

// Get vimeo feed
$.ajax({
    type: "GET",
    url: "http://vimeo.com/api/v2/<my username>/videos.xml",
    dataType: "xml",
    success: function( xml ) {
        $(xml).find( "video" ).each( function() {
            console.log( $(this).find( "title" ) );
        });
    }
});

});

But I get this error: XMLHttpRequest cannot load http://vimeo.com/api/v2//videos.xml. Origin http://localhost:8888 is not allowed by Access-Control-Allow-Origin.

I am using MAMP if that makes any difference.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T18:37:49+00:00Added an answer on May 23, 2026 at 6:37 pm

    Please read the vimeo API – User

    Making the URL

    http://vimeo.com/api/v2/username/request.output
    username Either the shortcut URL or ID of the user, an email address will NOT work.
    request The data you want. The different request types are listed below.
    output Specify the output type. We currently offer JSON, PHP and XML formats.

    So instead of making a request like http://vimeo.com/api/v2//videos.xml make a request like http://vimeo.com/api/v2//videos.json

    Now you can use $.getJSON to get the results like this.

    $(document).ready(function() {
        var url = "http://vimeo.com/api/v2/{username}/videos.json?callback=?";
        $.getJSON(url, function(data) {
            var items = [];
            $.each(data, function(key, datum) {
                items.push("<ul>");
                items.push("<li>Title: " + datum.title + "</li>");
                items.push("<li>Tags: " + datum.tags + "</li>");
                items.push("</ul>");
            });
            $("#result").html(items.join(""));
        });
    });
    

    View Demo: http://jsfiddle.net/naveen/Ssdjp/1/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to load xml file from specified url using javascript. Here is what
I need to load a .xml file from a URL adress into an NSData
I need to load an XML source using Simple XML, duplicate an existing node
I need to modify a (xml-)file from Apache Ant. loadfile task allows to load
I need to load an xML file from the bin folder in ASP.NET (MVC,
I am using this function public static IList<Item> ParseAtom(string url) { try { XDocument
I have an XML feed that looks something like this: I can parse the
I'm in a new project where I need to load XML files from other
I am using the following function in php to load an xml doc into
Im receiving an XML RSS feed. One of the tags look like this: <georss:point>55.0794503724671

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.