Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No puedo implementar la librería con Code Igniter 4 #65

Open
jesusmarioaj opened this issue Nov 15, 2022 · 4 comments
Open

No puedo implementar la librería con Code Igniter 4 #65

jesusmarioaj opened this issue Nov 15, 2022 · 4 comments

Comments

@jesusmarioaj
Copy link

Hola, buen día. Quiero hacer una implementación de la librería en CodeIgniter 4, hice la instalación mediante el comando de composer, pero no dejo de tener este error
image

Después de ejecutar el comando composer mi implementación está de esta forma:

image

Pero no dejo de tener el error, hice la implementación de Conekta, de la misma forma con componer pero OpenPay me está dando probemas.
Alguien ha tenido estos problemas con CI4?

@HugoRIF
Copy link

HugoRIF commented Nov 17, 2022

Hola yo estoy iniciando un proyecto y esto me funciono:
imagen
imagen
imagen

@HugoRIF
Copy link

HugoRIF commented Nov 17, 2022

Hola yo estoy iniciando un proyecto y esto me funciono: imagen imagen imagen

supongo que tu duda se resuelve solo agregando esto:
use Openpay\Data\Openpay;

y llamando a la instancia sin la diagonal invertida

@cifrandoIdeas
Copy link

En serio necesitan agregar esto a la documentación.

@karan247commerce
Copy link

karan247commerce commented Jul 5, 2023

Not work try cache on

$op = new Openpay\Data\Openpay();

$privateKey = "private_key";
$id = "merchent_id";
$op->setId($id);
$op->setApiKey($privateKey);
$op->setProductionMode(false);
$op->setCountry('CO');
try {
$openpay = $op->getInstance($id, $privateKey);
} catch (OpenpayApiTransactionError $e) {
error_log('ERROR on the transaction: ' . $e->getMessage() .
' [error code: ' . $e->getErrorCode() .
', error category: ' . $e->getCategory() .
', HTTP code: '. $e->getHttpCode() .
', request ID: ' . $e->getRequestId() . ']', 0);

} catch (OpenpayApiRequestError $e) {
error_log('ERROR on the request: ' . $e->getMessage(), 0);

} catch (OpenpayApiConnectionError $e) {
error_log('ERROR while connecting to the API: ' . $e->getMessage(), 0);

} catch (OpenpayApiAuthError $e) {
error_log('ERROR on the authentication: ' . $e->getMessage(), 0);

} catch (OpenpayApiError $e) {
error_log('ERROR on the API: ' . $e->getMessage(), 0);

} catch (Exception $e) {
error_log('Error on the script: ' . $e->getMessage(), 0);
}

But same issues

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants