β prev | next β
rijisoft 2020-05-26 20:44:19
sorry it’s in persian , but if it’s retutn instagram data show it on list
rijisoft 2020-05-26 20:44:40
nothing changed when i using new private window
rijisoft 2020-05-26 20:46:43
rijisoft 2020-05-26 20:40:00
public function connect_instagram($page)
{
$serverurl = ‘https://www.instagram.com/’.$page.’/?__a=1′;
$curl_connection=curl_init();
curl_setopt($curl_connection,CURLOPT_URL,$serverurl);
curl_setopt($curl_connection, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($curl_connection, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_connection, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl_connection, CURLOPT_FOLLOWLOCATION, 1);
$result = curl_exec($curl_connection);
$end_result = json_decode($result);
return $end_result;
}
$result = curl_exec($curl_connection);
dd($result)
$end_result = json_decode($result);
rijisoft 2020-05-26 20:46:54
return instagram login page
DesolatorMagno 2020-05-26 20:47:59
You could be banned them, it was working yesterday, and that url work today outside the server.
rijisoft 2020-05-26 20:50:10
DesolatorMagno 2020-05-26 20:47:59
You could be banned them, it was working yesterday, and that url work today outside the server.
how to get instagram api?! i only need these public information
DesolatorMagno 2020-05-26 20:50:35
https://developers.facebook.com/docs/instagram
DesolatorMagno 2020-05-26 20:51:32
Companies usually don’t like that other person they their info and show it in their webs.
rijisoft 2020-05-26 20:52:03
DesolatorMagno 2020-05-26 20:51:32
Companies usually don’t like that other person they their info and show it in their webs.
you say its not possible ?
DesolatorMagno 2020-05-26 20:52:36
Usually it’s not so easy, it take time to read and be creative.
DesolatorMagno 2020-05-26 20:53:12
You have to check for public info data api, using a access token.
Roham0010 2020-05-26 20:54:23
rijisoft 2020-05-26 19:57:22
Hay guys
i only want to send request to instagram and get ( profile image and follower and following count ) of users
I use this pattern ( https://www.instagram.com/username/?__a=1 )and curl request to it
My site working well
but its not working form yesterday
i change ip of server bu its not working!!!!
its return instagram login page instead of data of site
Laravel have a package for Instagram api it’s so simple search for it…
I created a market place with that package
DesolatorMagno 2020-05-26 20:55:10
DesolatorMagno 2020-05-26 20:55:29
https://vinkla.dev/blog/fetch-instagram-data-with-php
rijisoft 2020-05-26 20:56:01
DesolatorMagno 2020-05-26 20:55:29
https://vinkla.dev/blog/fetch-instagram-data-with-php
i use it but its not worked tooπ
DesolatorMagno 2020-05-26 20:57:40
Search for packages.
Giovanni12121 2020-05-26 21:20:04
Hello somebody can help me, telling how one blog build in laravel Hide the admin access to insert new post??? Thank you in Advance
Roham0010 2020-05-26 21:21:33
Giovanni12121 2020-05-26 21:20:04
Hello somebody can help me, telling how one blog build in laravel Hide the admin access to insert new post??? Thank you in Advance
Search: how to create an admin middleware
Giovanni12121 2020-05-26 21:27:52
If i want to implement one blog that not show the login for the other user or the registration??
2020-05-26 21:35:54
https://youtu.be/qjQGw9v4Btk
Siberfx 2020-05-26 21:42:48
2020-05-26 21:35:54
https://youtu.be/qjQGw9v4Btk
nice laravel topic.
DesolatorMagno 2020-05-26 22:10:53
Giovanni12121 2020-05-26 21:27:52
If i want to implement one blog that not show the login for the other user or the registration??
For that you can work with roles and permission.
linux2014 2020-05-26 22:32:11
2020-05-26 21:35:54
https://youtu.be/qjQGw9v4Btk
Ali Ibn Abi Talib said: People are two types, either a brother for you in religion or a counterpart to you in creation
2020-05-26 22:51:11
any help please i m trying to install laravel collectives in laravel 5.8 using command composer require laravelcollective/html
2020-05-26 22:51:41
but it fails
Roham0010 2020-05-26 23:05:41
2020-05-26 22:51:11
any help please i m trying to install laravel collectives in laravel 5.8 using command composer require laravelcollective/html
Check your internet connection
Roham0010 2020-05-26 23:07:10
2020-05-26 22:51:41
but it fails
Also you could have say the error instead of this comment
Midhun 2020-05-27 05:40:42

I just used custom guard with middleware if not authenticated but its getting error can anyone help me please
Sumanta_mukhopadhyay 2020-05-27 06:09:53
Please have a look at this repo and give me your views if you liked it please rate a star
https://github.com/caeser1996/gmail_read
GitHub – caeser1996/gmail_read: A utility to read gmail emails –
GitHubA utility to read gmail emails. Contribute to caeser1996/gmail_read development by creating an account on GitHub.
alfredolopez80 2020-05-27 06:15:14
Sumanta_mukhopadhyay 2020-05-27 06:09:53
Please have a look at this repo and give me your views if you liked it please rate a star
https://github.com/caeser1996/gmail_read
Is Python?? Maybe can integrated with laravel??
Sumanta_mukhopadhyay 2020-05-27 06:15:49
Yes
Sumanta_mukhopadhyay 2020-05-27 06:16:00
You can
Sumanta_mukhopadhyay 2020-05-27 06:16:10
Using rest api easily
Siberfx 2020-05-27 06:16:14
Midhun 2020-05-27 05:40:42
I just used custom guard with middleware if not authenticated but its getting error can anyone help me please
there is no function as “array_get” so use instead in_array(“admin”, $this->guards)
2020-05-27 06:20:40
Midhun 2020-05-27 05:40:42
I just used custom guard with middleware if not authenticated but its getting error can anyone help me please
array_get() helper is replaced by Arr::get() in laravel 6.0
https://laravel.com/docs/7.x/helpers#method-array-get
Midhun 2020-05-27 06:43:12
Siberfx 2020-05-27 06:16:14
there is no function as “array_get” so use instead in_array(“admin”, $this->guards)
yes bro its working!! thanks
2020-05-27 06:52:11
Great
imrankabirk 2020-05-27 09:01:40
Please suggest me to learn laravel 7 on YouTube (APIs, and With react) best playlists
Josjess 2020-05-27 09:02:11
Laracast
imrankabirk 2020-05-27 09:02:55
Link please
Josjess 2020-05-27 09:10:45
Www.laracasts.com
Josjess 2020-05-27 09:11:00
Choose a series
2020-05-27 10:42:32
I’m facing the same problem
2020-05-27 10:42:53
There was a solution for this but i did not work out for me
2020-05-27 10:43:15
If someone knows a better way to fix it please show me how
oluleye oluseun 2020-05-27 11:10:38
Anyone with laravel Video to learn
2020-05-27 12:26:35
Josjess 2020-05-27 09:10:45
Www.laracasts.com
Here
TheGuyi 2020-05-27 12:45:58
Hello can someone please help me with a good English tutorial on setting up vuetify with laravel?
2020-05-27 13:12:23
You don’t have permission to access this resource. while seeting up laravel 6 on ubuntu server . any solution. I have given all permissions to the document directory
β prev | next β