You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should now create a cache store in your `config/cache.php` file:
94
+
95
+
> NOTE: This cache store should NOT be the same as your default cache store. If you use your default cache store, you will lose the Instagram Authentication when you clear your cache and the user will need to re-authenticate.
96
+
97
+
> You can use any driver you like as long as it is different from your default cache store, or it has a separate table or path.
85
98
99
+
```php
100
+
'instagram' => [
101
+
'driver' => 'file',
102
+
'path' => storage_path('instagram/cache/data'),
103
+
],
104
+
````
105
+
106
+
Add the following to your `.gitignore` file:
107
+
108
+
```bash
109
+
/storage/instagram/
86
110
```
111
+
87
112
You should finally add the following to your .env file:
0 commit comments