bb-fca 2.0.4 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/deltas/apis/create.js +22 -0
- package/dist/deltas/apis/create.js.map +1 -1
- package/dist/deltas/apis/posting/group.js +607 -0
- package/dist/deltas/apis/posting/group.js.map +1 -0
- package/dist/deltas/apis/posting/post.js +346 -1
- package/dist/deltas/apis/posting/post.js.map +1 -1
- package/dist/deltas/apis/posting/story.js +147 -0
- package/dist/deltas/apis/posting/story.js.map +1 -1
- package/dist/deltas/apis/threads/searchGroup.js +159 -0
- package/dist/deltas/apis/threads/searchGroup.js.map +1 -0
- package/dist/deltas/apis/users/searchGroups.js +221 -0
- package/dist/deltas/apis/users/searchGroups.js.map +1 -0
- package/dist/index.d.ts +66 -0
- package/dist/types/deltas/apis/create.d.ts +22 -0
- package/dist/types/deltas/apis/posting/group.d.ts +90 -0
- package/dist/types/deltas/apis/posting/post.d.ts +7 -0
- package/dist/types/deltas/apis/posting/story.d.ts +21 -0
- package/dist/types/deltas/apis/threads/searchGroup.d.ts +15 -0
- package/dist/types/deltas/apis/users/searchGroups.d.ts +17 -0
- package/dist/types/utils/axios.d.ts +1 -0
- package/dist/types/utils/index.d.ts +1 -0
- package/dist/utils/axios.js +12 -0
- package/dist/utils/axios.js.map +1 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/index.js.map +1 -1
- package/package.json +1 -1
- package/request.txt +60 -0
- package/src/deltas/apis/create.ts +25 -0
- package/src/deltas/apis/posting/group.ts +754 -0
- package/src/deltas/apis/posting/post.ts +439 -1
- package/src/deltas/apis/posting/story.ts +147 -0
- package/src/types/index.d.ts +66 -0
- package/src/utils/axios.ts +19 -0
- package/src/utils/index.ts +1 -0
- package/LICENSE-MIT +0 -21
- package/examples/post.example.js +0 -149
- package/friend.html +0 -534
- package/proflie.html +0 -527
package/dist/index.d.ts
CHANGED
|
@@ -123,6 +123,15 @@ export interface UploadPhotoResult {
|
|
|
123
123
|
data: any;
|
|
124
124
|
}
|
|
125
125
|
|
|
126
|
+
export interface UploadVideoResult {
|
|
127
|
+
success: boolean;
|
|
128
|
+
videoID: string;
|
|
129
|
+
uploadID: string;
|
|
130
|
+
uploadSessionID: string;
|
|
131
|
+
fileHandle: string;
|
|
132
|
+
data: any;
|
|
133
|
+
}
|
|
134
|
+
|
|
126
135
|
export interface ChangeNameResult {
|
|
127
136
|
/** Raw preview response data from AccountsCenter name validation query. */
|
|
128
137
|
preview: any;
|
|
@@ -365,6 +374,56 @@ export interface ThreadInfo {
|
|
|
365
374
|
};
|
|
366
375
|
}
|
|
367
376
|
|
|
377
|
+
export interface SearchGroupOptions {
|
|
378
|
+
limit?: number;
|
|
379
|
+
cursor?: string | null;
|
|
380
|
+
locale?: string;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
export interface SearchGroupItem {
|
|
384
|
+
groupID: string | null;
|
|
385
|
+
name: string | null;
|
|
386
|
+
url: string | null;
|
|
387
|
+
profileUrl: string | null;
|
|
388
|
+
imageSrc: string | null;
|
|
389
|
+
summary: string | null;
|
|
390
|
+
privacy: string | null;
|
|
391
|
+
memberText: string | null;
|
|
392
|
+
memberCount: number | null;
|
|
393
|
+
joinState: string | null;
|
|
394
|
+
hasMembershipQuestions: boolean | null;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
export interface SearchGroupResult {
|
|
398
|
+
groups: SearchGroupItem[];
|
|
399
|
+
cursor: string | null;
|
|
400
|
+
hasNextPage: boolean;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export interface GroupModule {
|
|
404
|
+
join(groupID: string): Promise<any>;
|
|
405
|
+
leave(groupID: string): Promise<any>;
|
|
406
|
+
getJoinedGroups(
|
|
407
|
+
cursor?: string | null,
|
|
408
|
+
count?: number,
|
|
409
|
+
): Promise<{
|
|
410
|
+
groups: Array<{
|
|
411
|
+
id: string;
|
|
412
|
+
name: string;
|
|
413
|
+
imageUri: string;
|
|
414
|
+
url: string;
|
|
415
|
+
memberCount: string;
|
|
416
|
+
privacy: string;
|
|
417
|
+
}>;
|
|
418
|
+
endCursor: string | null;
|
|
419
|
+
hasNextPage: boolean;
|
|
420
|
+
}>;
|
|
421
|
+
searchGroup(
|
|
422
|
+
keyword: string,
|
|
423
|
+
options?: SearchGroupOptions,
|
|
424
|
+
): Promise<SearchGroupResult>;
|
|
425
|
+
}
|
|
426
|
+
|
|
368
427
|
export interface MessageObject {
|
|
369
428
|
body?: string;
|
|
370
429
|
attachment?: ReadStream[];
|
|
@@ -606,6 +665,10 @@ export interface API {
|
|
|
606
665
|
photoPath: string,
|
|
607
666
|
callback?: Callback<UploadPhotoResult>,
|
|
608
667
|
): Promise<UploadPhotoResult>;
|
|
668
|
+
uploadVideo(
|
|
669
|
+
videoPath: string,
|
|
670
|
+
callback?: Callback<UploadVideoResult>,
|
|
671
|
+
): Promise<UploadVideoResult>;
|
|
609
672
|
};
|
|
610
673
|
|
|
611
674
|
/** Comment on a Facebook post. */
|
|
@@ -839,6 +902,9 @@ export interface API {
|
|
|
839
902
|
/** Add an external module to extend the API. */
|
|
840
903
|
addExternalModule(moduleObj: Record<string, Function>): void;
|
|
841
904
|
|
|
905
|
+
/** Group-related API methods. */
|
|
906
|
+
group: GroupModule;
|
|
907
|
+
|
|
842
908
|
/** Allow accessing dynamically loaded methods. */
|
|
843
909
|
[key: string]: any;
|
|
844
910
|
}
|
|
@@ -20,4 +20,26 @@ export default function (defaultFuncs: any, api: any, ctx: any): {
|
|
|
20
20
|
* @returns {Promise<object>} The server's response.
|
|
21
21
|
*/
|
|
22
22
|
deletePost: any;
|
|
23
|
+
/**
|
|
24
|
+
* Gets comments from a Facebook post.
|
|
25
|
+
* @param {string|object} postID - The post's story_fbid (string) or options object with story_fbid and id.
|
|
26
|
+
* @param {Function} [callback] - Optional callback function.
|
|
27
|
+
* @returns {Promise<object[]>} Array of comment objects.
|
|
28
|
+
*/
|
|
29
|
+
getComments: any;
|
|
30
|
+
/**
|
|
31
|
+
* Uploads a photo to Facebook for later use in posts.
|
|
32
|
+
* @param {string} photoPath - Local file path to the photo.
|
|
33
|
+
* @param {Function} [callback] - Optional callback function.
|
|
34
|
+
* @returns {Promise<object>} Upload result with photoID.
|
|
35
|
+
*/
|
|
36
|
+
uploadPhoto: any;
|
|
37
|
+
/**
|
|
38
|
+
* Uploads a video to Facebook for later use in posts.
|
|
39
|
+
* Uses the 7-step resumable upload flow.
|
|
40
|
+
* @param {string} videoPath - Local file path to the video.
|
|
41
|
+
* @param {Function} [callback] - Optional callback function.
|
|
42
|
+
* @returns {Promise<object>} Upload result with videoID.
|
|
43
|
+
*/
|
|
44
|
+
uploadVideo: any;
|
|
23
45
|
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @namespace api.group
|
|
3
|
+
* @description A module for joining, leaving, and listing Facebook groups.
|
|
4
|
+
* @license Ex-it
|
|
5
|
+
*/
|
|
6
|
+
export default function (defaultFuncs: any, api: any, ctx: any): {
|
|
7
|
+
/**
|
|
8
|
+
* Joins a Facebook group.
|
|
9
|
+
* @async
|
|
10
|
+
* @param {string} groupID The ID of the group to join.
|
|
11
|
+
* @returns {Promise<Object>} A promise that resolves to the API response data on success.
|
|
12
|
+
* @throws {Error} If the groupID is missing or the API request fails.
|
|
13
|
+
*/
|
|
14
|
+
join: (groupID: string, inviteShortLinkKey?: string | null) => Promise<any>;
|
|
15
|
+
/**
|
|
16
|
+
* Leaves a Facebook group.
|
|
17
|
+
* @async
|
|
18
|
+
* @param {string} groupID The ID of the group to leave.
|
|
19
|
+
* @returns {Promise<Object>} A promise that resolves to the API response data on success.
|
|
20
|
+
* @throws {Error} If the groupID is missing or the API request fails.
|
|
21
|
+
*/
|
|
22
|
+
leave: (groupID: string) => Promise<any>;
|
|
23
|
+
/**
|
|
24
|
+
* Invites friends to a Facebook group.
|
|
25
|
+
* @async
|
|
26
|
+
* @param {string} groupID The ID of the group to invite friends to.
|
|
27
|
+
* @param {string[]} userIDs Array of user IDs to invite.
|
|
28
|
+
* @returns {Promise<Object>} A promise that resolves to the API response data on success.
|
|
29
|
+
* @throws {Error} If the groupID or userIDs are missing or the API request fails.
|
|
30
|
+
*/
|
|
31
|
+
inviteFriends: (groupID: string, userIDs: string[]) => Promise<any>;
|
|
32
|
+
/**
|
|
33
|
+
* Fetches the logged-in user's joined Facebook groups with cursor-based pagination.
|
|
34
|
+
*
|
|
35
|
+
* @param {string|null} [cursor=null] Pagination cursor from a previous result's `endCursor`.
|
|
36
|
+
* Pass `null` (or omit) for the first page.
|
|
37
|
+
* @param {number} [count=10] Number of groups to fetch per page (used for pagination requests).
|
|
38
|
+
* @returns {Promise<JoinedGroupsResult>} Groups list and pagination info.
|
|
39
|
+
*
|
|
40
|
+
* @example
|
|
41
|
+
* // Page 1
|
|
42
|
+
* const page1 = await api.group.getJoinedGroups();
|
|
43
|
+
* console.log(page1.groups); // Array of GroupEntry
|
|
44
|
+
* console.log(page1.endCursor); // cursor string for next page
|
|
45
|
+
*
|
|
46
|
+
* // Page 2+
|
|
47
|
+
* const page2 = await api.group.getJoinedGroups(page1.endCursor);
|
|
48
|
+
*/
|
|
49
|
+
getJoinedGroups: (cursor?: string | null, count?: number) => Promise<{
|
|
50
|
+
groups: {
|
|
51
|
+
id: string;
|
|
52
|
+
name: string;
|
|
53
|
+
imageUri: string;
|
|
54
|
+
url: string;
|
|
55
|
+
memberCount: string;
|
|
56
|
+
privacy: string;
|
|
57
|
+
}[];
|
|
58
|
+
endCursor: string | null;
|
|
59
|
+
hasNextPage: boolean;
|
|
60
|
+
}>;
|
|
61
|
+
/**
|
|
62
|
+
* Search Facebook groups by keyword.
|
|
63
|
+
*
|
|
64
|
+
* @param {string} keyword Search keyword.
|
|
65
|
+
* @param {{ limit?: number; cursor?: string | null; locale?: string }} [options]
|
|
66
|
+
* @returns {Promise<{ groups: any[]; cursor: string | null; hasNextPage: boolean }>} Search result and pagination info.
|
|
67
|
+
*/
|
|
68
|
+
searchGroup: (keyword: string, options?: {
|
|
69
|
+
limit?: number;
|
|
70
|
+
cursor?: string | null;
|
|
71
|
+
locale?: string;
|
|
72
|
+
}) => Promise<{
|
|
73
|
+
groups: any[];
|
|
74
|
+
cursor: string | null;
|
|
75
|
+
hasNextPage: boolean;
|
|
76
|
+
}>;
|
|
77
|
+
/**
|
|
78
|
+
* Alias for searchGroup.
|
|
79
|
+
* @see searchGroup
|
|
80
|
+
*/
|
|
81
|
+
searchGroups: (keyword: string, options?: {
|
|
82
|
+
limit?: number;
|
|
83
|
+
cursor?: string | null;
|
|
84
|
+
locale?: string;
|
|
85
|
+
}) => Promise<{
|
|
86
|
+
groups: any[];
|
|
87
|
+
cursor: string | null;
|
|
88
|
+
hasNextPage: boolean;
|
|
89
|
+
}>;
|
|
90
|
+
};
|
|
@@ -10,6 +10,12 @@ export default function (defaultFuncs: any, api: any, ctx: any): {
|
|
|
10
10
|
url: any;
|
|
11
11
|
data: any;
|
|
12
12
|
}>;
|
|
13
|
+
createPost: (options: any, callback: any) => Promise<{
|
|
14
|
+
success: boolean;
|
|
15
|
+
postID: any;
|
|
16
|
+
url: any;
|
|
17
|
+
data: any;
|
|
18
|
+
}>;
|
|
13
19
|
delete: (postID: any, callback: any) => Promise<{
|
|
14
20
|
success: boolean;
|
|
15
21
|
postID: any;
|
|
@@ -17,4 +23,5 @@ export default function (defaultFuncs: any, api: any, ctx: any): {
|
|
|
17
23
|
}>;
|
|
18
24
|
getComments: (postID: any, callback: any) => Promise<any>;
|
|
19
25
|
uploadPhoto: (photoPath: any, callback: any) => Promise<any>;
|
|
26
|
+
uploadVideo: (videoPath: any, callback: any) => Promise<any>;
|
|
20
27
|
};
|
|
@@ -16,6 +16,27 @@ export default function (defaultFuncs: any, api: any, ctx: any): {
|
|
|
16
16
|
success: boolean;
|
|
17
17
|
storyID: any;
|
|
18
18
|
}>;
|
|
19
|
+
/**
|
|
20
|
+
* Uploads a photo for use in an image story.
|
|
21
|
+
* @param {string} photoPath Absolute path to the photo file.
|
|
22
|
+
* @returns {Promise<{success: boolean, photoID: string, photoId: string, imageSrc: string, data: object}>}
|
|
23
|
+
*/
|
|
24
|
+
uploadStoryPhoto: (photoPath: any) => Promise<{
|
|
25
|
+
success: boolean;
|
|
26
|
+
photoID: string;
|
|
27
|
+
photoId: string;
|
|
28
|
+
imageSrc: any;
|
|
29
|
+
data: any;
|
|
30
|
+
}>;
|
|
31
|
+
/**
|
|
32
|
+
* Creates a new image-based story. Handles upload + publish in one call.
|
|
33
|
+
* @param {string} photoPath Absolute path to the photo file.
|
|
34
|
+
* @returns {Promise<{success: boolean, storyID: string}>}
|
|
35
|
+
*/
|
|
36
|
+
createImageStory: (photoPath: any) => Promise<{
|
|
37
|
+
success: boolean;
|
|
38
|
+
storyID: any;
|
|
39
|
+
}>;
|
|
19
40
|
/**
|
|
20
41
|
* Reacts to a story with a specific emoji.
|
|
21
42
|
* @param {string} storyIdOrUrl The ID or full URL of the story to react to.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
type SearchGroupOptions = {
|
|
2
|
+
limit?: number;
|
|
3
|
+
cursor?: string | null;
|
|
4
|
+
locale?: string;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* @ChoruOfficial
|
|
8
|
+
* @description Search Facebook groups by keyword using SearchCometResultsPaginatedResultsQuery.
|
|
9
|
+
*/
|
|
10
|
+
export default function searchGroupModule(defaultFuncs: any, api: any, ctx: any): (keyword: string, options?: SearchGroupOptions) => Promise<{
|
|
11
|
+
groups: any[];
|
|
12
|
+
cursor: string | null;
|
|
13
|
+
hasNextPage: boolean;
|
|
14
|
+
}>;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @description A module for searching Facebook groups by keyword.
|
|
3
|
+
* Calls SearchCometResultsPaginatedResultsQuery via /api/graphql/.
|
|
4
|
+
* @param {Object} defaultFuncs The default functions provided by the API wrapper.
|
|
5
|
+
* @param {Object} api The full API object.
|
|
6
|
+
* @param {Object} ctx The context object containing the user's session state.
|
|
7
|
+
* @returns {Function} An async function that searches for groups by keyword.
|
|
8
|
+
*/
|
|
9
|
+
export default function searchGroupsModule(defaultFuncs: any, api: any, ctx: any): (keyword: string, options?: {
|
|
10
|
+
limit?: number;
|
|
11
|
+
cursor?: string | null;
|
|
12
|
+
locale?: string;
|
|
13
|
+
}) => Promise<{
|
|
14
|
+
groups: any[];
|
|
15
|
+
cursor: string | null;
|
|
16
|
+
hasNextPage: boolean;
|
|
17
|
+
}>;
|
|
@@ -4,4 +4,5 @@ export declare function cleanGet(url: string): Promise<any>;
|
|
|
4
4
|
export declare function get(url: string, reqJar: any, qs?: any, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
5
5
|
export declare function post(url: string, reqJar: any, form?: any, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
6
6
|
export declare function postFormData(url: string, reqJar: any, form: any, qs?: any, options?: any, ctx?: any): Promise<any>;
|
|
7
|
+
export declare function postRaw(url: string, reqJar: any, body: Buffer, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
7
8
|
export declare const getJar: () => CookieJar;
|
|
@@ -70,6 +70,7 @@ declare const utils: {
|
|
|
70
70
|
get(url: string, reqJar: any, qs?: any, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
71
71
|
post(url: string, reqJar: any, form?: any, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
72
72
|
postFormData(url: string, reqJar: any, form: any, qs?: any, options?: any, ctx?: any): Promise<any>;
|
|
73
|
+
postRaw(url: string, reqJar: any, body: Buffer, options?: any, ctx?: any, customHeader?: any): Promise<any>;
|
|
73
74
|
getJar: () => import("tough-cookie").CookieJar;
|
|
74
75
|
};
|
|
75
76
|
export = utils;
|
package/dist/utils/axios.js
CHANGED
|
@@ -9,6 +9,7 @@ exports.cleanGet = cleanGet;
|
|
|
9
9
|
exports.get = get;
|
|
10
10
|
exports.post = post;
|
|
11
11
|
exports.postFormData = postFormData;
|
|
12
|
+
exports.postRaw = postRaw;
|
|
12
13
|
const axios_1 = __importDefault(require("axios"));
|
|
13
14
|
const axios_cookiejar_support_1 = require("axios-cookiejar-support");
|
|
14
15
|
const form_data_1 = __importDefault(require("form-data"));
|
|
@@ -143,6 +144,17 @@ async function postFormData(url, reqJar, form, qs, options, ctx) {
|
|
|
143
144
|
};
|
|
144
145
|
return requestWithRetry(async () => await client.post(url, formData, config));
|
|
145
146
|
}
|
|
147
|
+
async function postRaw(url, reqJar, body, options, ctx, customHeader) {
|
|
148
|
+
const config = {
|
|
149
|
+
headers: (0, headers_1.getHeaders)(url, options, ctx, customHeader),
|
|
150
|
+
timeout: 300000, // 5 min for large uploads
|
|
151
|
+
...proxyConfig,
|
|
152
|
+
maxContentLength: Infinity,
|
|
153
|
+
maxBodyLength: Infinity,
|
|
154
|
+
validateStatus: (status) => status >= 200 && status < 600,
|
|
155
|
+
};
|
|
156
|
+
return requestWithRetry(async () => await client.post(url, body, config));
|
|
157
|
+
}
|
|
146
158
|
const getJar = () => jar;
|
|
147
159
|
exports.getJar = getJar;
|
|
148
160
|
//# sourceMappingURL=axios.js.map
|
package/dist/utils/axios.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"axios.js","sourceRoot":"","sources":["../../src/utils/axios.ts"],"names":[],"mappings":";;;;;;AA2DA,4BAyBC;AAED,4BAGC;AAED,kBAgBC;AAED,oBAqCC;AAED,oCA2BC;
|
|
1
|
+
{"version":3,"file":"axios.js","sourceRoot":"","sources":["../../src/utils/axios.ts"],"names":[],"mappings":"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"}
|
package/dist/utils/index.js
CHANGED
|
@@ -87,6 +87,7 @@ function makeDefaults(html, userID, ctx) {
|
|
|
87
87
|
get: (url, jar, qs, ctxx, customHeader = {}) => network.get(url, jar, mergeWithDefaults(qs), ctx.globalOptions, ctxx || ctx, customHeader),
|
|
88
88
|
post: (url, jar, form, ctxx, customHeader = {}) => network.post(url, jar, mergeWithDefaults(form), ctx.globalOptions, ctxx || ctx, customHeader),
|
|
89
89
|
postFormData: (url, jar, form, qs, ctxx) => network.postFormData(url, jar, mergeWithDefaults(form), mergeWithDefaults(qs), ctx.globalOptions, ctxx || ctx),
|
|
90
|
+
postRaw: (url, jar, body, ctxx, customHeader = {}) => network.postRaw(url, jar, body, ctx.globalOptions, ctxx || ctx, customHeader),
|
|
90
91
|
};
|
|
91
92
|
}
|
|
92
93
|
const utils = {
|
package/dist/utils/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bb-fca",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "BB-FCA is a powerful and user-friendly Facebook Chat API wrapper for Node.js, designed to simplify the process of creating chatbots and automating interactions on Facebook Messenger. With BB-FCA, developers can easily send messages, manage conversations, and interact with the Facebook Messenger platform using a simple and intuitive API.",
|
|
5
5
|
"main": "dist/core/client.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|