Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/./../app/.././../../finland.picotech.app/public_html/storage/../vendor/./nikic/../dompdf/../alexandr-mironov/../monolog/../unicodeveloper/../dragonmantank/../telnyx/../telnyx/../phar-io/../iyzico/iyzipay-php/samples
الملفات الموجودة في هذا الـ Path:
.
..
api_test.php
approve.php
cancel.php
cancel_with_reason.php
config.php
create_card.php
create_marketplace_payment.php
create_payment.php
create_payment_with_registered_card.php
create_payment_with_reward.php
create_sub_merchant.php
create_threeds_payment.php
delete_card.php
disapprove.php
images
initialize_apm.php
initialize_bkm.php
initialize_checkout_form.php
initialize_iyziup_form.php
initialize_iyziup_form_with_initial_consumer.php
initialize_pay_with_iyzico.php
initialize_threeds.php
initialize_threeds_with_reward.php
iyzilink_add_product_sample.php
iyzilink_delete_product_sample.php
iyzilink_retrieve_product_sample.php
iyzilink_retrieve_products_sample.php
iyzilink_update_product_sample.php
refund.php
refund_to_balance.php
refund_with_reason.php
reporting_payment_detail.php
reporting_payment_transaction.php
retrieve_apm.php
retrieve_bin.php
retrieve_bkm_result.php
retrieve_cards.php
retrieve_checkout_form_result.php
retrieve_installments.php
retrieve_iyziup_form_result.php
retrieve_loyalty.php
retrieve_pay_with_iyzico_result.php
retrieve_payment_result.php
retrieve_payout_transactions.php
retrieve_sub_merchant.php
settlement_to_balance.php
submerchant_payment_item_update.php
subscription-samples
tls_v12_test.php
ucs_init.php
update_sub_merchant.php

مشاهدة ملف: tls_v12_test.php

<?php

require_once("Config.php");

$options = Config::options();
$options->setBaseUrl("https://sandbox-api-tls12.iyzipay.com");

$iyzipayResource = \Iyzipay\Model\ApiTest::retrieve($options);

$tlsWarningMessage = "WARNING! Minimum TLS v1.2 will be supported after March 2018. Please upgrade your openssl version to minimum 1.0.1. 
If you have any questions, please open an issue on Github or contact us at integration@iyzico.com.";
if ($iyzipayResource->getStatus() == "success") {
    print_r($iyzipayResource);
} else {
    print_r($tlsWarningMessage);
}