ngx-insta
v0.0.2
Published
Library using instagram API
Downloads
167
Maintainers
Readme
:camera: Ngx-Insta
This project was based on InstaFeed2.
Getting Starded
Installation instructions
Install ngx-insta
from npm
:
npm install ngx-insta --save
Add needed package to NgModule imports:
import { NgxInstaModule } from 'ngx-insta';
@NgModule({
...
imports: [NgxInstaModule,...]
...
})
Add component to your page:
<ngx-insta [config]="config"></ngx-insta>
Config
config: any = {
count: '10' , // any int value
idUser: '#YOUR_IDUSER',
tokenUser: '#YOUR_TOKEN',
grid: true // false is list true is grid
};