-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dd6149b
commit f5572b5
Showing
7 changed files
with
77 additions
and
19 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 |
---|---|---|
|
@@ -91,6 +91,27 @@ Verify the deliverability of an email address. | |
tomba verify --target "[email protected]" | ||
``` | ||
|
||
## Http | ||
|
||
***Tomba Reverse Proxy*** | ||
|
||
```bash | ||
tomba http | ||
``` | ||
|
||
## Endpoints | ||
|
||
| Name | Route | Query | State | Authentication | Method | | ||
| --------------- | --------- | -------- | --------- | -------------- | ------ | | ||
| Home | / | No | Completed | No | Get | | ||
| author finder | /author | `url` | Completed | No | Get | | ||
| email counter | /count | `domain` | Completed | No | Get | | ||
| enrichment | /enrich | `email` | Completed | No | Get | | ||
| linkedin finder | /linkedin | `url` | Completed | No | Get | | ||
| domain search | /search | `domain` | Completed | No | Get | | ||
| domain status | /status | `domain` | Completed | No | Get | | ||
| email verifier | /verify | `email` | Completed | No | Get | | ||
|
||
### Available Commands | ||
|
||
| Command name | Description | | ||
|
@@ -100,6 +121,7 @@ tomba verify --target "[email protected]" | |
| count | Returns total email addresses we have for one domain. | | ||
| enrich | Locate and include data in your emails. | | ||
| help | Help about any command | | ||
| http | Runs a HTTP server (reverse proxy). | | ||
| linkedin | Instantly discover the email addresses of Linkedin URLs. | | ||
| login | Sign in to Tomba account | | ||
| logout | delete your current KEY & SECRET API session. | | ||
|
@@ -110,15 +132,16 @@ tomba verify --target "[email protected]" | |
|
||
### Command Flags | ||
|
||
| shortopts | longopts | Description | | ||
| --------- | ---------- | --------------------------------------------------------------- | | ||
| `-h` | `--help` | help for tomba | | ||
| `-j` | `--json` | output JSON format. (default true) | | ||
| `-k` | `--key` | Tomba API KEY. | | ||
| `-o` | `--output` | Save the results to file. | | ||
| `-s` | `--secret` | Tomba API SECRET. | | ||
| `-t` | `--target` | TARGET SPECIFICATION Can pass email, Domain, URL, Linkedin URL. | | ||
| `-y` | `--yaml` | output YAML format. | | ||
| shortopts | longopts | Description | | ||
| --------- | ---------- | ------------------------------------------------------------------ | | ||
| `-h` | `--help` | help for tomba | | ||
| `-j` | `--json` | output JSON format. (default true) | | ||
| `-k` | `--key` | Tomba API KEY. | | ||
| `-o` | `--output` | Save the results to file. | | ||
| `-op` | `--prot` | Sets the port on which the HTTP server should bind. (default 3000) | | ||
| `-s` | `--secret` | Tomba API SECRET. | | ||
| `-t` | `--target` | TARGET SPECIFICATION Can pass email, Domain, URL, Linkedin URL. | | ||
| `-y` | `--yaml` | output YAML format. | | ||
|
||
## Auto-Completion | ||
|
||
|
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 +1 @@ | ||
1.0.2 | ||
1.0.3 |
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
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ import "fmt" | |
|
||
var ( | ||
app = "tomba" | ||
version = "v1.0.2" | ||
version = "v1.0.3" | ||
) | ||
|
||
// String returns a string. | ||
|
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