What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi, I have a question and I am not sure weather it's related to spryker support but I will give it a

UKKQKJ9FX
UKKQKJ9FX Posts: 38 🧑🏻‍🚀 - Cadet
edited April 2020 in Help

Hi,
I have a question and I am not sure weather it's related to spryker support but I will give it a try.
I need to create somewhat of an api ( I can not use. the glue api) so I want. to have a route like. this
/api/product/{id}
/api/product/{id}/{someotherparam}
Edit: /api/product means /resource/resource
the. above does not seem to be working for me but. the below does
/api/{id}
/api/{id}/{someotherparam}

I was wondering how can I use /string/string/{param} instead of /string/{param}
Here is what I have so far

    const API_PLP_ROUTE = '/api/product';
    const API_PDP_ROUTE = '/api/product/{hashedProductAbstractId}';
    const ROUTE_PLP_NAME = 'api-product';
    const ROUTE_PDP_NAME = 'api-product-detail';


    /**
     * @param \Silex\Application $app
     *
     * @return void
     */
    protected function defineControllers(Application $app)
    {
        $this->createController(self::API_PLP_ROUTE, self::ROUTE_PLP_NAME, 'ProductApi', 'Index', 'index');
        $this->createController(self::API_PDP_ROUTE, self::ROUTE_PDP_NAME, 'ProductApi', 'Index', 'index');

Comments

  • Ievgen Varava
    Ievgen Varava Sprykee Posts: 154 🧑🏻‍🚀 - Cadet

    you can check an example of passing parameters in url somewhere like \SprykerShop\Yves\CustomerPage\Plugin\Provider\CustomerPageControllerProvider::addAccessTokenRoute()