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

  • Home
  • SEARCH
  • 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 6205325
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T05:15:15+00:00 2026-05-24T05:15:15+00:00

I have looked at the following question: Could someone provide a C# example using

  • 0

I have looked at the following question: Could someone provide a C# example using itemsearch from Amazon Web Services

It’s out of date and not too useful.

What I want is to retrieve an image from a web service for the album art given artist, song title and/or album name information.

So far I’m digging through the following web service but I’m finding Amazon’s offerings very convoluted for that I am looking to do: http://webservices.amazon.com/AWSECommerceService/AWSECommerceService.wsdl

Has anyone won this battle? Any simple ways of going about this?

  • 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-24T05:15:18+00:00Added an answer on May 24, 2026 at 5:15 am

    I recently did this. I ended up using lastFM’s API instead. Very simple to use.

    This is my full code, provided that you download their C# API and get an API account (which is free for non-commercial use, and instant).
    XXXXXX and YYYYYY is your lastFM login:

    public class LastFmAlbumArt
    {
        public static string AbsUrlOfArt(string album, string artist)
        {
            Lastfm.Services.Session session = new Lastfm.Services.Session("XXXXXX", "YYYYYY");
            Lastfm.Services.Artist lArtist = new Lastfm.Services.Artist(artist, session);
            Lastfm.Services.Album lAlbum = new Lastfm.Services.Album(lArtist, album, session);
    
            return lAlbum.GetImageURL();
        }
    
        public static Image AlbumArt(string album, string artist)
        {
            Stream stream = null;
            try
            {
                WebRequest req = WebRequest.Create(AbsUrlOfArt(album, artist));
                WebResponse response = req.GetResponse();
                stream = response.GetResponseStream();
                Image img = Image.FromStream(stream);
    
                return img;
            }
            catch (Exception e)
            {
                return null;
            }
            finally
            {
                if(stream != null)
                    stream.Dispose();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have looked and I could not find this question before, and it surprises
Having looked at this question, I have the following code: $/ = \0 answer
I have looked around on the Internet trying to answer this question. It seems
Do you plan on using Factor ? Have you looked at it? Checked it
I have some accesses from 192.168.0.71 on my apache logs. I looked up this
I have the following question regarding Flex/AIR data grids: Can I access the value
I need to make a web page with Wicket that lays out the following
I have looked over the Repository pattern and I recognized some ideas that I
I have looked at the SQL Server 2008 feature comparison matrix and it lists
I have looked at NHibernate and EntitySpaces and they both seem to work differently.

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.