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 question.(5)

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

ITtutoria

ITtutoria Logo ITtutoria Logo

ITtutoria Navigation

  • Python
  • Java
  • Reactjs
  • JavaScript
  • R
  • PySpark
  • MYSQL
  • Pandas
  • QA
  • C++
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Python
  • Science
  • Java
  • JavaScript
  • Reactjs
  • Nodejs
  • Tools
  • QA
Home/ Questions/no http resource was found that matches the request uri - How to fix?
Next
Answered
Janice Reynolds
  • 3
Janice Reynolds
Asked: July 16, 20222022-07-16T08:56:45+00:00 2022-07-16T08:56:45+00:00In: Error

no http resource was found that matches the request uri – How to fix?

  • 3

. Advertisement .

..3..

. Advertisement .

..4..

I’ve looked at a lot of links to try to figure out what caused the mistake, but none of them have helped me.

I’m attempting to use Postman to access a WebAPI operation but am encountering the following problem: no http resource was found that matches the request uri.

This is my API.

[Authorize]
public class AlbumsController : ApiController
{
[HttpGet]
[Route("api/album/history/")]
public BaseTO GetHistory(string type,int id)
{
//api stuff
}
}

While on the contact with the postman, I am passing:

-Authorization Token
-Type
-Id

Please help me fix it. Thank you so much.

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

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Best Answer
    dttutoria Expert
    2022-07-16T09:24:02+00:00Added an answer on July 16, 2022 at 9:24 am

    Solution:

    Here are a few solutions that I hope can help to fix the error no http resource was found that matches the request uri.

    Solution 1.

    Have you made sure that the config.MapHttpAttributeRoutes();  for the api is enabled for attribute routing?

    The following query string should be used to access it using your current route: http://localhost:50684/api/albums/history?type=test&id=1 

    Then add the [FromUri] decoration to the parameters

    [HttpGet]
    [Route("api/albums/history/")]
    public IHttpActionResult GetHistory([FromUri]string type,[FromUri]int id)
    {
    //api stuff
    }

    or to use route parameters to access the api

    http://localhost:50684/api/albums/history/test/1 

    [HttpGet]
    [Route("api/albums/history/{type}/{id}")]
    public IHttpActionResult GetHistory(string type,int id)
    {
    //api stuff
    }

    Solution 2:

    The code should be like this:

    [Authorize]
    public class AlbumsController : ApiController
    {
    [HttpGet]
    [Route("api/albums/history/")]
    public IHttpActionResult GetHistory(string type,int id)
    {
    //api stuff
    }
    }

    Ensure that your Postman method is GET:
    http://localhost:50684/api/album/history?type=test&id=1

    Solution 3.

    Just adjust this:

    AllowInsecureHttp = true

    public void ConfigureAuth(IAppBuilder app)
    {
    app.CreatePerOwinContext(ApplicationDbContext.Create);
    app.CreatePerOwinContext<ApplicationUserManager>(ApplicationUserManager.Create);
    app.UseCookieAuthentication(new CookieAuthenticationOptions());
    app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
    PublicClientId = "self";
    OAuthOptions = new OAuthAuthorizationServerOptions
    {
    TokenEndpointPath = new PathString("/api/Token"),
    Provider = new ApplicationOAuthProvider(PublicClientId),
    AuthorizeEndpointPath = new PathString("/api/Account/ExternalLogin"),
    AccessTokenExpireTimeSpan = TimeSpan.FromDays(1),
    AllowInsecureHttp = true
    };
    app.UseOAuthBearerTokens(OAuthOptions);
    }
    • 3
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

Sidebar

Ask A Question
  • How to Split String by space in C++
  • How To Convert A Pandas DataFrame Column To A List
  • How to Replace Multiple Characters in A String in Python?
  • How To Remove Special Characters From String Python

Explore

  • Home
  • Tutorial

Footer

ITtutoria

ITtutoria

This website is user friendly and will facilitate transferring knowledge. It would be useful for a self-initiated learning process.

@ ITTutoria Co Ltd.

Tutorial

  • Home
  • Python
  • Science
  • Java
  • JavaScript
  • Reactjs
  • Nodejs
  • Tools
  • QA

Legal Stuff

  • About Us
  • Terms of Use
  • Privacy Policy
  • Contact Us

DMCA.com Protection Status

Help

  • Knowledge Base
  • Support

Follow

© 2022 Ittutoria. All Rights Reserved.

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.