示例#1
0
        static void Main(string[] args)
        {
            var payExOptions = new PayExOptions
            {
                ApiBaseUrl   = new Uri("https://api.externalintegration.payex.com/psp/creditcard/payments/"),
                Token        = "c274f82a89b3853e8dfdd842996caa19268b6989a0ea130298ed02ecd6880c36",
                MerchantId   = "d3f5327c-d735-44fb-b8aa-7fb4170a36b6",
                MerchantName = "Hurtigruten",
                //CallBackUrl = new Uri("https://yourdomain.com/callbacks"),
                //CancelPageUrl = new Uri("https://yourdomain.com/cancel"),
                //CompletePageUrl = new Uri("https://yourdomain.com/complete")
            };

            IOptions <PayExOptions> options = new OptionsWrapper <PayExOptions>(payExOptions);

            IHttpClientFactory httpClientFactory = new HttpClientCreator(options.Value);

            ISelectClient clientSelector = new DummySelector();


            IConfigureOptions <PayExOptions> optionsConfigurator = new ConfigureOptions <PayExOptions>(Conf(payExOptions));
            var configureOptionses = new [] { optionsConfigurator };
            IPostConfigureOptions <PayExOptions> postoptionsConfigurator = new PostConfigureOptions <PayExOptions>(Constants.THECLIENTNAME, Conf(payExOptions));
            var postConfigureOptionses = new [] { postoptionsConfigurator };

            IOptionsSnapshot <PayExOptions> optionsSnap = new OptionsManager <PayExOptions>(new OptionsFactory <PayExOptions>(configureOptionses, postConfigureOptionses));
            var payExClient = new PayExClient(httpClientFactory, optionsSnap, clientSelector);

            var id      = "7a378390-c198-4ab2-cfbb-08d8378632ec";
            var payment = payExClient.GetPayment(id).GetAwaiter().GetResult();
            var paid    = payExClient.GetPaidPayment(id).GetAwaiter().GetResult();
            //var prices = new Price
            //{
            //    Amount = 10000,
            //    VatAmount = 2500,
            //    Type = PriceTypes.Vipps
            //};
            //var paymentRequest = new PaymentRequest("Console.Sample/1.0.0", "Some productname", "order123", "123456", prices);
            //var res = payExClient.PostVippsPayment(paymentRequest).GetAwaiter().GetResult();
            //Console.WriteLine($"Payment created with id : {res.Payment.Id}");
        }
示例#2
0
        static void Main(string[] args)
        {
            var config = new ConfigurationBuilder()
                         .AddJsonFile("appsettings.json")
                         .Build();

            var payExOptions = new PayExOptions();

            config.GetSection("payex:someAccount").Bind(payExOptions);

            IOptions <PayExOptions> options = new OptionsWrapper <PayExOptions>(payExOptions);

            IHttpClientFactory httpClientFactory = new HttpClientCreator(options.Value);

            ISelectClient clientSelector = new DummySelector();


            IConfigureOptions <PayExOptions> optionsConfigurator = new ConfigureOptions <PayExOptions>(Conf(payExOptions));
            var configureOptionses = new [] { optionsConfigurator };
            IPostConfigureOptions <PayExOptions> postoptionsConfigurator = new PostConfigureOptions <PayExOptions>(Constants.THECLIENTNAME, Conf(payExOptions));
            var postConfigureOptionses = new [] { postoptionsConfigurator };

            IOptionsSnapshot <PayExOptions> optionsSnap = new OptionsManager <PayExOptions>(new OptionsFactory <PayExOptions>(configureOptionses, postConfigureOptionses));
            var dynamic     = new PayExClientDynamic(httpClientFactory, optionsSnap);
            var payExClient = new PayExClient(dynamic, clientSelector);
            var prices      = new Price
            {
                Amount    = 10000,
                VatAmount = 2500,
                Type      = PriceTypes.Vipps
            };
            var paymentRequest = new PaymentRequest("Console.Sample/1.0.0", "Some productname", "order123", "123456", prices);
            var res            = payExClient.PostVippsPayment(paymentRequest).GetAwaiter().GetResult();

            Console.WriteLine($"Payment created with id : {res.Payment.Id}");

            var dynamicallyCreated = dynamic.PostVippsPayment(clientSelector.Select(), paymentRequest).GetAwaiter().GetResult();

            Console.WriteLine($"Payment created with dynamic client. id : {dynamicallyCreated.Payment.Id}");
        }
示例#3
0
        static void Main(string[] args)
        {
            var payExOptions = new PayExOptions
            {
                ApiBaseUrl      = new Uri("https://api.externalintegration.payex.com/"),
                Token           = "my-token",
                MerchantId      = "my-merchantId",
                MerchantName    = "YOUR-MERCHANT-NAME",
                CallBackUrl     = new Uri("https://yourdomain.com/callbacks"),
                CancelPageUrl   = new Uri("https://yourdomain.com/cancel"),
                CompletePageUrl = new Uri("https://yourdomain.com/complete")
            };

            IOptions <PayExOptions> options = new OptionsWrapper <PayExOptions>(payExOptions);

            IHttpClientFactory httpClientFactory = new HttpClientCreator(options.Value);

            ISelectClient clientSelector = new DummySelector();


            IConfigureOptions <PayExOptions> optionsConfigurator = new ConfigureOptions <PayExOptions>(Conf(payExOptions));
            var configureOptionses = new [] { optionsConfigurator };
            IPostConfigureOptions <PayExOptions> postoptionsConfigurator = new PostConfigureOptions <PayExOptions>(Constants.THECLIENTNAME, Conf(payExOptions));
            var postConfigureOptionses = new [] { postoptionsConfigurator };

            IOptionsSnapshot <PayExOptions> optionsSnap = new OptionsManager <PayExOptions>(new OptionsFactory <PayExOptions>(configureOptionses, postConfigureOptionses));
            var payExClient = new PayExClient(httpClientFactory, optionsSnap, clientSelector);
            var prices      = new Price
            {
                Amount    = 10000,
                VatAmount = 2500,
                Type      = PriceTypes.Vipps
            };
            var paymentRequest = new PaymentRequest("Console.Sample/1.0.0", "Some productname", "order123", "123456", prices);
            var res            = payExClient.PostVippsPayment(paymentRequest).GetAwaiter().GetResult();

            Console.WriteLine($"Payment created with id : {res.Payment.Id}");
        }