Skip to content

Commit

Permalink
ResultURL Code
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjunge authored Oct 3, 2018
1 parent e6b7b3c commit b7bdfae
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Tutorial 10/B2CResultURL.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?php

$callbackResponse = file_get_contents('php://input');

$logFile = "B2CResultResponse.json";
$log = fopen($logFile, "a");
fwrite($log, $callbackResponse);
fclose($log);

0 comments on commit b7bdfae

Please sign in to comment.