Sdk's for getting auth token for posting on fa

2019-06-24 03:37发布

I am developing an iOs application, In which user set his social status, that status will post on schedule time( that can be after 1,2... week ) from cronjob(server side is on nodejs ).

Please suggest me is there any sdk for this, using that I can get offline permission(Auth token [that token is required for posting] ).

I know about ShareKit but it's only sharing things.

I found a similar question on stack but that doesn't have answer:

3条回答
Fickle 薄情
2楼-- · 2019-06-24 03:44

Not found any sdk, Finally I did my task as traditional way of Installing all sdk's individually.

查看更多
Rolldiameter
3楼-- · 2019-06-24 03:47

i am not sure, but maybe this is what you are looking forSimpleAuth.

查看更多
Anthone
4楼-- · 2019-06-24 04:08

A quick Google search provided some answers.

For Facebook, request permissions using the Facebook SDK. Capture the token:

[[[FBSession activeSession] accessTokenData] accessToken]];

For Twitter, there's an explanation of OAuth, and a GitHub example of reverse OAuth to use for posting on behalf of a user.

For LinkedIn, there's a how-to for getting an OAuth token, and there's a GitHub repo for iOS authentication

查看更多
登录 后发表回答