Com Western Money Standard and Express, você pode receber pagamentos on -line com facilidade e segurança do seu cliente.

Gateway de Pagamento Expresso.

Métodos

Se o cliente desejar financiar pagamentos usando Western Money, defina o pagador para Western Money. (Outros método de pagamentos como: PayPal, Stripe, Etc. ainda não estão disponíveis).


                        

                            //Payer Object 

                            $payer = new Payer(); 

                            $payer->setPaymentMethod('PayMoney'); //preferably, your system name, example - PayMoney

                        

                    
Quantidade

Especifique um valor de pagamento e a moeda.


                        

                            //Amount Object 

                            $amountIns = new Amount(); 

                            $amountIns->setTotal(20)->setCurrency('USD'); //must give a valid currency code and must exist in merchant wallet list 

                        

                    
Transação

Este é um recurso de transação onde o valor deve ser definido.


                        

                            //Transaction Object

                            $trans = new Transaction();

                            $trans->setAmount($amountIns);

                        

                    
URLs de Redirecionamento

Defina os URLs para onde o comprador deve redirecionar após a transação ser concluída ou cancelada.


                        

                            //RedirectUrls Object

                            $urls = new RedirectUrls();

                            $urls->setSuccessUrl('http://your-merchant-domain.com/example-success.php') //success url - the merchant domain page, to redirect after successful payment, see sample example-success.php file in  sdk root, example - http://techvill.net/PayMoney_sdk/example-success.php

                            ->setCancelUrl('http://your-merchant-domain.com/');//cancel url - the merchant domain page, to redirect after cancellation of payment, example - http://techvill.net/PayMoney_sdk/

                        

                    
Pagamento

Este é um recurso de pagamento onde todos os Métodos, Valores, URLs de Redirecionamento e Credenciais do Comerciante (ID do Cliente e Segredo do Cliente) devem ser definidos. Depois de inicializado o método de pagamento, é necessário gerar um URL de redirecionamento. Os usuários precisam se redirecionar para esse URL para concluir a transação.


                        

                            //Payment Object

                            $payment = new Payment();

                            $payment->setCredentials([ //client id & client secret, see merchants->setting(gear icon)

                            'client_id' => 'place your client id here',  //must provide correct client id of an express merchant

                            'client_secret' => 'place your client secret here' //must provide correct client secret of an express merchant

                            ])->setRedirectUrls($urls)

                            ->setPayer($payer) 

                            ->setTransaction($trans);

                            

                            try {

                            $payment->create(); //create payment

                            header("Location: ".$payment->getApprovedUrl()); //checkout url

                            } catch (Exception $ex) { 

                            print $ex; 

                            exit; }

                        

                    

Como Executar Este Código no Seu Dispositivo:

1º :

Clique no botão a seguir para baixar o pacote

2º :

Agora, vá para php-sdk/src/PayMoney/Rest/Connection.php, e então mude BASE_URL para o nome do seu domínio.


                        
Código de Exemplo
require 'vendor/autoload.php'; //if you want to change the namespace/path from 'PayMoney' - lines[1-5] - //to your desired name, i.e. (use PayMoney\Api\Amount; //to use MyDomain\Api\Amount;), then you must change the folders name that holds the API classes //as well as change the property 'PayMoney' in (autoload->psr-0) of (php-sdk/composer.json) file to your //desired name and run "composer dump-autoload" command from sdk root use PayMoney\Api\Payer; use PayMoney\Api\Amount; use PayMoney\Api\Transaction; use PayMoney\Api\RedirectUrls; use PayMoney\Api\Payment; //Payer Object $payer = new Payer(); $payer->setPaymentMethod('PayMoney'); //preferably, your system name, example - PayMoney //Amount Object $amountIns = new Amount(); $amountIns->setTotal(20)->setCurrency('USD'); //must give a valid currency code and must exist in merchant wallet list //Transaction Object $trans = new Transaction(); $trans->setAmount($amountIns);

Instruções Opcionais

Se você não ver alterações após configurar e extrair o SDK, vá para a raiz do SDK e execute os comandos abaixo:

  • Limpar Cache do Compositor
  • Instalação do Compositor
  • Carregamento Automático de Limpeza do Compositor
Agencia na Web