-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tutorial page for downloading JSON data from Instagram
- Loading branch information
1 parent
e46564d
commit 0fd88d8
Showing
3 changed files
with
37 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% extends 'base.html' %} | ||
|
||
{% block title %}Tutorial: Get JSON Data{% endblock %} | ||
|
||
{% block content %} | ||
<section class="section"> | ||
<div class="container"> | ||
<h1 class="title has-text-centered">Tutorial to Get JSON Data of Following and Followers</h1> | ||
|
||
<div class="content"> | ||
<ol> | ||
<li>Go to your Instagram profile.</li> | ||
<li>Click the top-right icon with three horizontal lines.</li> | ||
<li>Click "Account Center".</li> | ||
<li>In account settings, select "Your Information and Permissions".</li> | ||
<li>Click "Download Your Information".</li> | ||
<li>Click "Download or Transfer Information".</li> | ||
<li>Select your account.</li> | ||
<li>Select "Some of your information".</li> | ||
<li>In the "Connections" section, select "Followers and Following".</li> | ||
<li>Download to your device.</li> | ||
<li>Set the date range to "All time" and format to "JSON".</li> | ||
<li>Click the "Create Files" button.</li> | ||
<li>After a few minutes, navigate to "Download Your Information".</li> | ||
</ol> | ||
</div> | ||
</div> | ||
</section> | ||
{% endblock %} |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
from django.urls import path | ||
from .views import UploadFileView | ||
from . import views | ||
|
||
urlpatterns = [ | ||
path('', UploadFileView.as_view(), name='upload_file'), | ||
path('', views.UploadFileView.as_view(), name='upload_file'), | ||
path('tutorial/', views.TutorialView.as_view(template_name='analytics/tutorial.html'), name='tutorial'), | ||
] |
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