Last active
December 29, 2019 07:30
-
-
Save gistlyn/fd8dfcf28dfcdaf75abc4b99d06e8607 to your computer and use it in GitHub Desktop.
Swift Google protoc SSL GrpcServicesClient TodoWorld Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import GRPC | |
import NIO | |
import NIOSSL | |
do { | |
let configuration = ClientConnection.Configuration( | |
target: .hostAndPort("todoworld.servicestack.net", 50051), | |
eventLoopGroup: MultiThreadedEventLoopGroup(numberOfThreads: 1), | |
tls: .init(certificateChain: try NIOSSLCertificate.fromPEMFile("grpc.crt").map { .certificate($0) }, | |
certificateVerification: .none) //TODO enable SSL verification | |
) | |
let client = GrpcServicesServiceClient(connection: ClientConnection(configuration: configuration)) | |
var request = Hello() | |
request.name = "gRPC Swift" | |
let response = try client.getHello(request).response.wait().result | |
print(response) | |
} catch { | |
print("ERROR\n\(error)") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment