Skip to content

Commit

Permalink
[Update] fix constant + add readme new feature
Browse files Browse the repository at this point in the history
  • Loading branch information
HoangTran0410 committed Oct 20, 2021
1 parent c2d4b65 commit 5f0f6ef
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@
<details>
<summary>LỊCH SỬ CẬP NHẬT</summary>

- **Update**(20/10/2021):

- Chức năng tải ảnh với độ phân giải GỐC:
- ![](./screenshots/13.png)
- **Ưu điểm**:
- Tải ảnh gốc chắc chắn là sướng hơn ảnh bị nén rồi :)))))))
- **Nhược điểm**:
- Tốc độ tải chậm hơn tải ảnh chất lượng thường (Do với mỗi ảnh phải gọi thêm 1 API để lấy link tải ảnh gốc)
- Tỷ lệ bị ban (FB không cho tải nữa và tự đăng xuất}) cao hơn, do gọi API liên tục.
- => Các bạn chỉ cần login lại và lấy access token mới là tải được tiếp
- Để giảm tỷ lệ bị ban, hãy tăng thời gian chờ ở biến WAIT_BEFORE_NEXT_FETCH_LARGEST_PHOTO trong file [config.js](./config.js) nhé

- **Update**(03/10/2021):

- Giao diện tiếng việt có dấu.
Expand Down
1 change: 1 addition & 0 deletions config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// you can modify all the variables below
export const ACCESS_TOKEN = "YOUR_ACCESS_TOKEN";
export const WAIT_BEFORE_NEXT_FETCH = 0; // thời gian chờ (ms) trước mỗi lần fetch tiếp theo
export const WAIT_BEFORE_NEXT_FETCH_LARGEST_PHOTO = 200; // thời gian chờ (ms) trước khi tải ảnh có độ phân giải lớn. Nếu chờ ít thì rất dễ bị facebook ban
export const ID_LINK_SEPERATOR = ";";
export const PHOTO_FILE_FORMAT = "png"; // OR jpg
export const VIDEO_FILE_FORMAT = "mp4"; // OR wav ?
Expand Down
Binary file added screenshots/13.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions scripts/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ const menuDownloadAlbum = async () => {
from_photo_id_text == "0" ? null : from_photo_id_text;
const is_largest_photo = largest_photo == "0" ? false : true;

if (action.key == 2 && is_largest_photo) {
console.log(`[!] Lưu LINK ảnh chất lương cao hiện chưa hỗ trợ.`);
}

action.key == 1
? await downloadAlbumPhoto({
albumId: album_id,
Expand Down Expand Up @@ -113,6 +117,11 @@ const menuDownloadWallMedia = async () => {
"> Tải ảnh chất lượng cao nhất? (0-Không, 1-Có): "
);
const is_largest_photo = largest_photo == "0" ? false : true;

if (action.key == 2 && is_largest_photo) {
console.log(`[!] Lưu LINK ảnh chất lương cao hiện chưa hỗ trợ.`);
}

action.key == 1
? await downloadWallMedia({
targetId: target_id,
Expand Down

0 comments on commit 5f0f6ef

Please sign in to comment.