Giter VIP home page Giter VIP logo

Comments (5)

weierophinney avatar weierophinney commented on June 25, 2024

@sarathbabuSwamynathan I may be way off base here since it doesn't answer your question directly, but I would create another service for resetting password operations for simplicity. I would then change the route from the default to be /users/reset_password[/:user_id]


Originally posted by @sariabod at zfcampus/zf-apigility#187 (comment)

from api-tools.

weierophinney avatar weierophinney commented on June 25, 2024

Thanks for your reply Sam. I thought of creating apis like which i have seen following link

campaign

http://developer.mailchimp.com/documentation/mailchimp/reference/campaigns/#%20

Multiple actions are there. If its is created in single rest api, then it will be easy to maintain it and it will removes some confusions down the road.


Originally posted by @sarathbabuSwamynathan at zfcampus/zf-apigility#187 (comment)

from api-tools.

weierophinney avatar weierophinney commented on June 25, 2024

It is quite common to use an RPC (remote procedure call) solution for such things like resetting a password. You could also treat the password as a resource and allow PUT-ting it, but you would have to come up with your own model for this. Using an RPC solution will probably be the easier way to go.

Check here for docs on the zf-rpc module: https://apigility.org/documentation/modules/zf-rpc

Check also this post on stackoverflow that might be interesting for you: http://stackoverflow.com/q/3077229/1697459


Originally posted by @Wilt at zfcampus/zf-apigility#187 (comment)

from api-tools.

weierophinney avatar weierophinney commented on June 25, 2024

Thanks Sam and Wlit for your earliest reply.


Originally posted by @sarathbabuSwamynathan at zfcampus/zf-apigility#187 (comment)

from api-tools.

weierophinney avatar weierophinney commented on June 25, 2024

Hi @sarathbabuSwamynathan ,

creating a service under users is as far as I've seen just a matter of properly routing.
Start by creating a new Rest API service for example with the admin tool, then set the route in your corresponding module.config.php file. i.e under the router.routes configuration key have something like this:

'router' => [
    'routes' => [
        'your_module_name.rest.custom_stuffs' => [
            'type' => 'Segment',
            'options' => [
                'route' => '/users/:user_id/custom_stuffs[/][:custom_stuff_id[/]]',
                'defaults' => [
                    'controller' => 'Wallet\\V1\\Rest\\CustomStuffs\\Controller',
                ],
            ],
        ],
    ],
],

that should be it


Originally posted by @Nguimjeu at zfcampus/zf-apigility#187 (comment)

from api-tools.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.