Использование Stripe CLI для тестирования веб-перехватчиков на машине windows dev - PullRequest
1 голос
/ 01 августа 2020
• 1000 1014 *, я извлек исполняемый файл на свой рабочий стол, но теперь я не знаю, как правильно запускать команды в моем cmd.

stripe.exe на моем рабочем столе, я сначала попробовал просто щелкнуть его, командная строка открыл и показал сообщение ниже, через несколько секунд командная строка закрывается.

This is a command line tool.

You need to open cmd.exe and run it from there.

После этого я попытался открыть окно CMD и перетащить stripe.exe на вкладку, я получил следующий список команд :

C:\Users\GABRIEL>C:\Users\GABRIEL\Desktop\stripe.exe
The official command-line tool to interact with Stripe.

Before using the CLI, you'll need to login:

  $ stripe login

If you're working on multiple projects, you can run the login command with the
--project-name flag:

  $ stripe login --project-name rocket-rides

Usage:
  stripe [command]

Webhook commands:
  listen                        Listen for webhook events
  trigger                       Trigger test webhook events

Stripe commands:
  logs                          Interact with Stripe API request logs
  status                        Check the status of the Stripe API

Resource commands:
  get                           Quickly retrieve resources from Stripe
  charges                       Make requests (capture, create, list, etc) on charges
  customers                     Make requests (create, delete, list, etc) on customers
  payment_intents               Make requests (cancel, capture, confirm, etc) on payment intents
  ...                           To see more resource commands, run `stripe resources help`

Other commands:
  completion                    Generate bash and zsh completion scripts
  config                        Manually change the config values for the CLI
  feedback                      Provide us with feedback on the CLI
  fixtures                      Run fixtures to populate your account with data
  help                          Help about any command
  login                         Login to your Stripe account
  logout                        Logout of your Stripe account
  open                          Quickly open Stripe pages
  samples                       Sample integrations built by Stripe
  serve                         Serve static files locally
  version                       Get the version of the Stripe CLI

Flags:
      --api-key string        Your API key to use for the command
      --color string          turn on/off color output (on, off, auto)
      --config string         config file (default is
                              $HOME/.config/stripe/config.toml)
      --device-name string    device name
  -h, --help                  help for stripe
      --log-level string      log level (debug, info, warn, error)
                              (default "info")
  -p, --project-name string   the project name to read from for config
                              (default "default")
  -v, --version               Get the version of the Stripe CLI

Use "stripe [command] --help" for more information about a command.

C:\Users\GABRIEL>

как вы видите, я не могу ввести какую-либо команду, например

stripe login

У меня нет возможности что-либо делать с полосой cli в cmd.

1 Ответ

0 голосов
/ 03 августа 2020

Вам нужно cd в папку, где вы сохранили stripe.exe. В вашем случае это:

C:\Users\GABRIEL> cd Desktop

Затем вы просто запускаете команды полосы оттуда, и это будет работать. Например:

C:\Users\GABRIEL\Desktop> stripe --help

OR

C:\Users\GABRIEL\Desktop> stripe login
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...