![JAR search and dependency download from the Maven repository](/logo.png)
examples.Confirmation Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2015 Klarna AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package examples;
import com.klarna.checkout.Connector;
import com.klarna.checkout.ErrorResponseException;
import com.klarna.checkout.IConnector;
import com.klarna.checkout.Order;
import org.json.simple.JSONObject;
import java.io.IOException;
import java.net.URISyntaxException;
import java.security.NoSuchAlgorithmException;
import java.util.Map;
/**
* Thank you example.
*/
final class Confirmation {
/**
* Empty constructor.
*/
private Confirmation() {
}
/**
* Runs the example code.
*
* @param args Command line arguments
* @throws URISyntaxException If URIs are incorrect
* @throws NoSuchAlgorithmException If connector couldn't be created
* @throws IOException If api call failed
*/
public static void main(final String[] args)
throws URISyntaxException, NoSuchAlgorithmException, IOException {
final String secret = "sharedSecret";
// This is just a placeholder for the example.
// For example in jsp you could do
// request.getParameter("klarna_order_id");
final String orderID = "ABC123";
IConnector connector = Connector.create(
secret, IConnector.TEST_BASE_URL);
Order order = new Order(connector, orderID);
try {
order.fetch();
final String status = (String) order.get("status");
if (!status.equals("checkout_complete")) {
// Report error
System.out.println("Checkout not completed, redirect");
}
Map gui = (Map) order.get("gui");
String snippet = gui.get("snippet").toString();
// Output the snippet to the customer.
System.out.println(String.format("%s", snippet));
// Clear session object from klarna_checkout data.
// session.removeAttribute("klarna_checkout");
} catch (ErrorResponseException e) {
JSONObject json = e.getJson();
System.out.println(json.get("http_status_message"));
System.out.println(json.get("internal_message"));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy