You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Direct/manual creation of CLDLink should be possible, to perform fetch of shortURL. The only info needed for the shortURL fetch operation is sessionIdentifier and shareId, which can easily be supplied.
Example with initializer (could also be done by making these properties readwrite):
let link = CLDLink(shareId, CLDSession.defaultSession().sessionIdentifier)
link.fetchShortURLWithResultBlock({ (url) -> Void in ...
This functionality is important when trying to fetch a shortURL long after an item public link has been fetched, instead of performing another public link fetch to then fetch the shortURL, it could be done directly and instantly.
The text was updated successfully, but these errors were encountered:
Direct/manual creation of CLDLink should be possible, to perform fetch of shortURL. The only info needed for the shortURL fetch operation is
sessionIdentifier
andshareId
, which can easily be supplied.Example with initializer (could also be done by making these properties readwrite):
This functionality is important when trying to fetch a shortURL long after an item public link has been fetched, instead of performing another public link fetch to then fetch the shortURL, it could be done directly and instantly.
The text was updated successfully, but these errors were encountered: