-
Notifications
You must be signed in to change notification settings - Fork 151
FAQ
Alexander Legotin edited this page Jan 6, 2018
·
14 revisions
- Checkpoint required
- User must be authenticated exception
- I got sentry block! What can I do to unblock account
- How can I debug?
- I have no idea how to get into this project?
If you get checkpoint_required
- login to your account using your mobile device or Web site and fix it by yourself.
At the moment these is no possibility to do it using this API.
If you get "user must be authenticated" exception - perform Login() action so that user will be authenticated. It must be done once, authentication info have same lifetime with API instance
/// <summary>
/// IResult - common return type for library public methods, can contain some additional info like: Exception details, Instagram response type etc.
/// </summary>
/// <typeparam name="T">Return type</typeparam>
public interface IResult<out T>
I found this approach suitable for projects like this one. Please check ask google for such info first:
- Go to Instagram Web site account settings
- Block you account temporarily
- Wait couple hours
- Login from your Instagram mobile application and you good to go now with this API
- click
- Investigate debug mesage reported by library:
- Setup proper instance and investigate collected logs:
This project includes Demo samples, Tests project and Wiki page - most used cases are covered.