- try {
- LDRClient ldrClient = new LDRClient("livedoorId", "passowrd");
- Pin[] pins = ldrClient.getAllPins();
- for (Pin pin : pins) {
- System.out.print(pin.getTitle());
- System.out.print(" ");
- System.out.println(pin.getLink());
- }
- } catch (LDRException e) {
- e.printStackTrace();
- }