Which framework do I use to do an HTTPS GET?

Which framework would I need to use in order to perform an HTTPS GET from my iOS app to a service provider? I don't have the vocabulary to describe what the framework does -- "connectivity"? TCP/IP protocol communications?

Accepted Reply

Many things depend on the server, but you usually use `URLSession` included in Apple's Foundation framework.

You can find many many articles searching with "swift http get urlsession". (Please be careful, some bad example may hit on the top.)

Replies

Many things depend on the server, but you usually use `URLSession` included in Apple's Foundation framework.

You can find many many articles searching with "swift http get urlsession". (Please be careful, some bad example may hit on the top.)