Snapchat API PHP

时间:2015-12-14 22:39:51

标签: php snapchat

我想弄清楚SNAPI是如何工作的(非官方的api for php in php)

所以这是项目的github链接。

https://github.com/mgp25/SC-API

在这里说。

Use registerTool.php https://github.com/mgp25/Snap-API/blob/master/examples/registerTool.php

Note: This is a CLI tool, not for webservers.

It will ask you for the account data:

Username: SnapTest

Password: thisIsMyPassword

Email: snaptest@myemail.com

Birthday (yyyy-mm-dd): 1970-01-01

我可以使用哪种CLI工具输入我自己的注册凭证?

因为这个php文件有这个代码

<?php

include_once("../src/snapchat.php");


echo "\n\nUsername: ";
$username = trim(fgets(STDIN));

echo "\nPassword: ";
$password = trim(fgets(STDIN));

echo "\nEmail: ";
$email = trim(fgets(STDIN));

echo "\nBirthday (yyyy-mm-dd): ";
$birthday = trim(fgets(STDIN));

echo "\nGmail address: ";
$gMail = trim(fgets(STDIN));

echo "\nGmail password: ";
$gPasswd = trim(fgets(STDIN));

echo "\nCasper key: ";
$casperKey = trim(fgets(STDIN));

echo "\nCasper secret: ";
$casperSecret = trim(fgets(STDIN));

$snapchat = new Snapchat($username, $gMail, $gPasswd, $casperKey, $casperSecret, true);

我是PHP和API的新手,我只想弄清楚它是如何工作的。 非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

1)安装XAMPP

2)在你的XAMPP文件夹中找到PHP.exe(“C:\ xampp \ php \ php.exe”)

3)在“PATH”部分中,在控制面板中的环境变量上复制PHP.exe路径(如果使用的是Windows)。如果有其他东西写在那里(对我来说它是“C:\ Ruby200-x64 \ bin”你必须在它之后放一个半号“;”然后“C:\ xampp \ php”它应该看起来像这样“ C:\ Ruby200-x64 \ bin; C:\ xampp \ php“)。 4)所以现在我假设您在Windows中,打开命令提示符CMD,然后使用命令“cd”导航到存在registerTool.php文件的文件夹。让我们假设它在桌面上的文件夹中。把它放在CMD“cd Desktop \ SnapchatApi \ examples \”上,然后输入。

5)现在是打开文件的时候了。在CMD“php registerTool.php”上输入此命令,它将通过CMD运行脚本。

我不知道我是否帮助了你,对于这里的任何问题答案。