-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Kullanıcı takipçi ve takip ettiklerini getirme eklendi - Login olan kullanıcının device id otomatik değişiyor böylece bir hesap banlanınca diğer hesap engel yemiyor. - SSS eklendi
- Loading branch information
Showing
10 changed files
with
238 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Frequently Asked Questions | ||
|
||
### I'm getting "Login Fail" Error | ||
<details> | ||
<summary>Solution</summary> | ||
|
||
Check the items below one by one. | ||
|
||
1- Check your user and password | ||
|
||
2- If you are using a localhost or server, make sure its ip is in Turkey. If your last login was in Turkey and your server is abroad, Instagram blocks the login for security and sends you a notification. You can see this information by entering it from your phone or browser. | ||
You can use proxy for solution. BKN : [instagram-user-login-with-proxy.php](https://github.com/Hasokeyk/instagram/blob/main/examples/user/instagram-user-login-with-proxy.php) | ||
</details> | ||
|
||
I get Error ### "mkdir" | ||
<details> | ||
<summary>Solution</summary> | ||
|
||
Give the following folder chmod 777 authority for all files and folders. | ||
|
||
`vendor/hasokeyk` | ||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Sıkça sorulan sorular | ||
|
||
### "Login Fail" Hatası alıyorum | ||
<details> | ||
<summary>Çözüm</summary> | ||
|
||
Aşağıda maddeleri teker teker kontrol edin. | ||
|
||
1- Kullanıcı ve şifrenizi kontrol edin | ||
|
||
2- Localhost veya sunucu kullanıyorsanız ipsinin Türkiye içinde olmasına dikkat edin. Son girişiniz Türkiye içinde olduysa ve sunucunuz yurtdışında ise instagram güvenlik için oturum açmayı engeller ve size bildirim yollar. Bu bilgirimi telefonunuzdan veya tarayıcınızdan girerek görebilirsiniz. | ||
Çözüm için proxy kullanabilirsiniz. BKN : [instagram-user-login-with-proxy.php](https://github.com/Hasokeyk/instagram/blob/main/examples/user/instagram-user-login-with-proxy.php) | ||
</details> | ||
|
||
### "mkdir" Hatası alıyorum | ||
<details> | ||
<summary>Çözüm</summary> | ||
|
||
Aşağıdaki klasöre tüm dosya ve klasörler için chmod 777 yetkisi verin. | ||
|
||
`vendor/hasokeyk` | ||
</details> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
use instagram\instagram; | ||
|
||
require "../../vendor/autoload.php"; | ||
|
||
$username = 'username'; | ||
$password = 'password'; | ||
|
||
$instagram = new instagram($username, $password); | ||
$instagram->login->login(); | ||
|
||
$login = $instagram->login->login_control(); | ||
if($login){ | ||
$user = $instagram->user->get_user_followers(); | ||
print_r($user); | ||
} | ||
else{ | ||
echo 'Login Fail'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
use instagram\instagram; | ||
|
||
require "../../vendor/autoload.php"; | ||
|
||
$username = 'username'; | ||
$password = 'password'; | ||
|
||
$instagram = new instagram($username, $password); | ||
$instagram->login->login(); | ||
|
||
$login = $instagram->login->login_control(); | ||
if($login){ | ||
$user = $instagram->user->get_user_following(); | ||
print_r($user); | ||
} | ||
else{ | ||
echo 'Login Fail'; | ||
} |
Oops, something went wrong.