OAuth in Zend Framework 2

前端 未结 1 984
说谎
说谎 2021-01-02 08:16

I am currently developing my first ZF application based on the new release 2.0.2. (I don\'t have any experience in ZF1)

Now I need to use OAuth to authenticate and I

相关标签:
1条回答
  • 2021-01-02 08:40

    There is an official OAuth package for ZF2 already. You can find some information on the ZF2 Packages website.

    If you use composer you can install the package by adding the following following the directions on setting up composer here.

    For the require packages, just put:

    "require": {
        "zendframework/zendoauth": "2.0.*"
    },
    

    and then run:

    php composer.phar install
    

    and it will install the oauth package.

    There is also the ReverseOAuth2 library which looks good. I found that on the community supported site modules.zendframework.com.

    If you want to download directly, the stable version at the time of writing can be found at: https://packages.zendframework.com/composer/zendframework-zendoauth-2.0.2-release-2.0.2-91b73f.zip

    Hope that helps.

    0 讨论(0)
提交回复
热议问题