Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to get Mini Program Openid in the background using PHP

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article shows you how to use PHP to get Mini Program Openid in the background, the content is concise and easy to understand, absolutely can make your eyes bright, through the detailed introduction of this article, I hope you can get something.

/ / get the openid of Mini Program user. The returned value is json string.

Define variable

Protected $appid = "*"

Protected $secret = "* *"

Protected $grant_type = "authorization_code"

Public function GetOpenid ()

{

$request = I ('param.')

/ / obtain the code passed by WeChat Mini Programs

$js_code = $request ['code']

$curl = curl_init ()

/ / use curl_setopt () to set the url address

$url = 'https://api.weixin.qq.com/sns/jscode2session?appid='. $this- > appid. '& secret='. $this- > secret. '& js_code='. $js_code. '& grant_type='. $this- > grant_type

Curl_setopt ($curl, CURLOPT_URL, $url)

/ / sets whether to output header

Curl_setopt ($curl, CURLOPT_HEADER, false)

/ / sets whether to output the result

Curl_setopt ($curl, CURLOPT_RETURNTRANSFER, 1)

/ / set whether to check the certificate on the server side

Curl_setopt ($curl, CURLOPT_SSL_VERIFYPEER, false)

/ / use curl_exec () to convert the result returned by curl into normal data and save it to a variable

$data = curl_exec ($curl)

/ / close the session

Curl_close ($curl)

Echo json_encode ($data)

}

The above content is how to use PHP to get Mini Program Openid in the background, have you learned the knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report