powered by Para

jPrime roundup, Para client for iOS and Swift

Last week was jPrime 2016, the biggest Java conference on the Balkans. It was a huge success — more than 500 visitors, two tracks in two days. The slogan was *”Java - 21 and legally drunk”* and the two main themes were microservices and reactive programming with RxJava. This was the second year in a row for the conference which is organized by the community, i.e. fellow Java developers from the BGJUG. By being silver sponsors, we made a humble contribution which helped the community organize this great event.

I really liked the talk by Kees Jan Koster where he explained what it is that distracts us from coding and how we can focus on getting things done and not spend too much time in meetings. Later, Hrvoje Crnjak talked about RxJava and how it could be used to make our applications more reactive. And on the second day I really enjoyed the talk on Go by Stoyan Rachev.

Just before jPrime, we released a client library for Para that works with iOS devices, including tvOS and OS X. It is written in Swift and is published on CocoaPods. We encountered a lot of problems with Xcode and CocoaPods along the way - unstable IDE, poor Objective-C interoperability and poor documentation were slowing us down. Personally, I liked Swift and this was my first time using it, but the overall programming experience with Xcode left in me a feeling of unstability and beta-ness. The developer tools for Java and Android are just superior in comparison, and in a way, I’m glad Java won.

Now you can build iOS apps that are powered by Para on the backend:

1
2
3
4
5
6
7
8
9
import ParaClient
// avoid using the secret key on mobile devices
let client = ParaClient(accessKey: "ACCESS_KEY", secretKey:"")
client.signIn("facebook", providerToken: "fb_access_token", callback: { user in
if user != nil {
// success! user is authenticated, JWT token is saved on the device
// you can now call the API methods
}
})

Finally, we also updated Para to version 1.18.5 which includes a number of bug fixes. The release is on Maven Central and you can download the executable WAR binary file from GitHub.

Have questions or suggestions? Chat with us on Gitter!