mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
21 lines
537 B
Objective-C
Executable file
21 lines
537 B
Objective-C
Executable file
//
|
|
// OSKFacebookUtility.h
|
|
// Overshare
|
|
//
|
|
// Created by Jared Sinclair 10/29/13.
|
|
// Copyright (c) 2013 Overshare Kit. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
@import Accounts;
|
|
|
|
@class OSKFacebookContentItem;
|
|
|
|
@interface OSKFacebookUtility : NSObject
|
|
|
|
+ (void)postContentItem:(OSKFacebookContentItem *)item
|
|
toSystemAccount:(ACAccount *)account
|
|
options:(NSDictionary *)options /* At this time, just ACFacebookAudienceKey */
|
|
completion:(void(^)(BOOL success, NSError *error))completion;
|
|
|
|
@end
|