fca-shadowne 1.0.0 → 1.0.1
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/.cache/replit/__replit_disk_meta.json +1 -1
- package/.upm/store.json +1 -1
- package/README.md +8 -13
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"nonce":
|
|
1
|
+
{"nonce":3841146986611410634,"last_updated":{"seconds":1698493864,"nanos":618586000}}
|
package/.upm/store.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":2,"languages":{"nodejs-npm":{"specfileHash":"257bee97dfb75d13700a54a2242fc134","lockfileHash":"b2ab5f8a8ec626e9fbfd859883f13155"}}}
|
|
1
|
+
{"version":2,"languages":{"nodejs-npm":{"specfileHash":"257bee97dfb75d13700a54a2242fc134","lockfileHash":"b2ab5f8a8ec626e9fbfd859883f13155","guessedImports":["ws","https-proxy-agent","totp-generator","pretty-ms","npmlog","bluebird","axios","got","readable-stream","express","figlet","deasync","chalk","is-hexcolor","request","mqtt","puppeteer","fs-extra","speakeasy","gradient-string","duplexify","cheerio","ansi-to-html"],"guessedImportsHash":"ebf2a7720ae26a3347e91027297c8918"}}}
|
package/README.md
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
[](https://socket.dev/npm/package/fca-project-orion)
|
|
2
|
-
[](https://github.com/ivancotacte)
|
|
3
1
|
|
|
4
2
|
## Important !
|
|
5
3
|
|
|
@@ -28,11 +26,11 @@ Facebook already exists and allows users to create Api for Chatbots 😪 Here =>
|
|
|
28
26
|
|
|
29
27
|
If You Want To Use It, Download It By:
|
|
30
28
|
```bash
|
|
31
|
-
npm i fca-
|
|
29
|
+
npm i fca-shadowne
|
|
32
30
|
```
|
|
33
31
|
or
|
|
34
32
|
```bash
|
|
35
|
-
npm install fca-
|
|
33
|
+
npm install fca-shadowne
|
|
36
34
|
```
|
|
37
35
|
|
|
38
36
|
It Will Download To node_modules (Your Lib) - Note Replit Will Not Show Anywhere To Find 😪
|
|
@@ -41,11 +39,11 @@ It Will Download To node_modules (Your Lib) - Note Replit Will Not Show Anywhere
|
|
|
41
39
|
|
|
42
40
|
If You Want To Use The Latest Or Updated Version Then Go To Terminal Or Command Promt Type:
|
|
43
41
|
```bash
|
|
44
|
-
npm install fca-
|
|
42
|
+
npm install fca-shadowne@latest
|
|
45
43
|
```
|
|
46
44
|
Or
|
|
47
45
|
```bash
|
|
48
|
-
npm i fca-
|
|
46
|
+
npm i fca-shadowne@latest
|
|
49
47
|
```
|
|
50
48
|
|
|
51
49
|
## If You Want To Test Api
|
|
@@ -56,7 +54,7 @@ Please Use With Test Account => [Facebook Whitehat Accounts](https://www.faceboo
|
|
|
56
54
|
## Using
|
|
57
55
|
|
|
58
56
|
```javascript
|
|
59
|
-
const login = require("fca-
|
|
57
|
+
const login = require("fca-shadowne"); // get it from lib
|
|
60
58
|
|
|
61
59
|
// log in
|
|
62
60
|
login({email: "Gmail Account", password: "Your Facebook Password"}, (err, api) => {
|
|
@@ -72,9 +70,6 @@ login({email: "Gmail Account", password: "Your Facebook Password"}, (err, api) =
|
|
|
72
70
|
```
|
|
73
71
|
|
|
74
72
|
As a result, it will imitate you as shown below:
|
|
75
|
-
<img width="517" alt="screen shot 2016-11-04 at 14 36 00" src="./ivancotacte1.png">
|
|
76
|
-
<img width="517" alt="screen shot 2016-11-04 at 14 36 00" src="./ivancotacte2.jpg">
|
|
77
|
-
<img width="517" alt="screen shot 2016-11-04 at 14 36 00" src="./ivancotacte3.png">
|
|
78
73
|
|
|
79
74
|
If You Want Advanced Use Then Use The Bot Types Listed Above!
|
|
80
75
|
|
|
@@ -98,7 +93,7 @@ You Need To Go To File Mirai.js, Then Find Line
|
|
|
98
93
|
And Replace It With:
|
|
99
94
|
|
|
100
95
|
```js
|
|
101
|
-
var login = require('fca-
|
|
96
|
+
var login = require('fca-shadowne')
|
|
102
97
|
```
|
|
103
98
|
|
|
104
99
|
After that, run normally!
|
|
@@ -119,14 +114,14 @@ __Instructions With Appstate__
|
|
|
119
114
|
|
|
120
115
|
```js
|
|
121
116
|
const fs = require("fs");
|
|
122
|
-
const login = require("fca-
|
|
117
|
+
const login = require("fca-shadowne");
|
|
123
118
|
|
|
124
119
|
var credentials = {email: "FB_EMAIL", password: "FB_PASSWORD"}; // account information
|
|
125
120
|
|
|
126
121
|
login(credentials, (err, api) => {
|
|
127
122
|
if(err) return console.error(err);
|
|
128
123
|
// log in
|
|
129
|
-
|
|
124
|
+
ObjFastConfig: {
|
|
130
125
|
});
|
|
131
126
|
```
|
|
132
127
|
|