SNAPI がどのように機能するかを理解しようとしています (php の snapchat の非公式 API)
ここにプロジェクトの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 にまったく慣れていないので、それがどのように機能するかを理解しようとしています。助けていただければ幸いです。