how to install the oauth in php

后端 未结 3 1295
孤城傲影
孤城傲影 2021-01-06 14:46

How to install the oauth in php. Can any one provide me the full description, links and all the libraries. I tried from here but I could not understand

I want to acc

相关标签:
3条回答
  • 2021-01-06 14:53

    First of you have to download pear run it. than Install the Oauth extension. For windows you should have compiled file. of .dll file of extension. Best of luck

    0 讨论(0)
  • 2021-01-06 14:58

    You can find the correct dll files here

    Make sure you select the correct file on the following factors:

    1. PHP version
    2. Architecture (x86 or x64)
    3. Thread Safety (Yes/No)

    You can find these info using php_info(); of your server.

    0 讨论(0)
  • 2021-01-06 15:15

    Yup, u need this file php_oauth.dll (windows)

    Put into

    /bin/php[version]/ext
    

    And you need to change php.ini to load oauth (Dynamic Extensions)

    extension=php_oauth.dll
    
    0 讨论(0)
提交回复
热议问题