我正在尝试显示我的用户的Instagram关注者数量。他们使用Instagram登录我的wordpress网站,我使用的是Pluggin Social Login。
显然,由于Instagram API已关闭端点,因此无法再使用它,因此,我正在尝试通过编辑Child Theme文件夹中的functions.php文件来使用Curl实现。
import numpy as np
def mean_py(array):
x = array.shape[1]
y = array.shape[2]
#avoid creating values as list first
#and create empty array instead
values = np.empty((x,y), type(array[0][0][0]))
for i in range(x):
for j in range(y):
#no more need for append operations
values[i][j] = ((np.mean(array[:, i, j])))
#no more need for conversion to array
#values = np.array([values])
#values = values.reshape(500,500)
return values
我希望显示用户的Instagram粉丝数,但echo不返回任何内容。
答案 0 :(得分:0)
我认为更改此行:
$curl_connection =
curl_init("https://www.instagram.com/$user_nickname/?__a=1");
到以下:
$curl_connection=curl_init();
curl_setopt($curl_connection,CURLOPT_URL,'https://www.instagram.com/$user_nickname/?__a=1');
应该可以解决问题。
请让我知道。