Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Umstieg von Testsystem auf Produktiv #96

Open
mjovicevic opened this issue May 7, 2022 · 0 comments
Open

Umstieg von Testsystem auf Produktiv #96

mjovicevic opened this issue May 7, 2022 · 0 comments
Labels
question Further information is requested

Comments

@mjovicevic
Copy link

Hallo Zusammen.
Nachdem wir nun endlich die Testphase erfolgreich abgeschlossen haben haben wir von T-Systems ein xxxx.key file zugesendet bekommen.
Leider habe ich nun keinen Schimmer was ich damit anfangen soll.

In der Testphase hatte ich ein *cer file, ein *.key file und das zugehörige Passwort.
Ich nutze den PHP Code der auf dieser Seite als Beispiel angegeben ist.

$url     ="https://quicktest-result.coronawarn.app/api/v1/quicktest/results";
$certPath ="CWA/myCertFile.cer";//Path to your certificate xxxxx.cer
$keyPath  ="CWA/myKEyFile_prd.key";//Path to your key file xxx-wru.key
$pass     ="myPassword";//- Your password for the key.

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_PORT, 443);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_SSLCERT, $certPath);
curl_setopt($ch, CURLOPT_SSLCERTPASSWD, $pass);
curl_setopt($ch, CURLOPT_SSLKEY, $keyPath);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);

Kann mir einer erklären was ich nun machen muss?

Vielen Dank und Viele Grüße
Michael

@mjovicevic mjovicevic added the question Further information is requested label May 7, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

1 participant