Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Table of Contents

...



The feed method works when the application transmits the information to GEODI in case of changes in data or privileges. GEODI Functions as the opposite of the service connection method.

...

*  If you have a question you can check the Frequently Asked Questions .


Multiple Content Feed

BulkFeed
DefinitionThe contents are forwarded to GEODI as a result of a BulkFeed call. GEODI only returns status information without waiting for the call. Suitable for sending multiple contents. Feed method is more convenient for sending single content.
Request

[GEODIURL]/FeedHandler?op=BulkFeed&Content=[ContentJson]&UserSession=[Token]

  • UserSession: The feed authorized Token to be received from the system administrator must be specified. The Token rendering interface can be accessed from [geodiurl] / API ( Geodi REST API )
  • wsName (Optional): wsName must be passed if the provided Token is authorized to feed multiple projects.
  • enumeratorID (Optional): The enumeratorID must be passed if the provided Token is authorized to feed multiple sources (geodi enumerator).
HttpMethodGET, POST
Expected Errors

401 Unauthorized access / Access denied

403 Forbidden

511 Network Authentication Required

501 Server Error

470 Unsupported extension, Server configuration error

471 Content Required

481 This Token cannot access any workspaces

453 wsName Required - If Token can feed multiple projects, wsname is required.

452 enumeratorID Required  - If Token can feed multiple projects, enumeratorID is required.

480 wsname or enumeratorID is not accessible - Token does not have sufficient authority


Return Value

OK is returned.

  • Indicates that scanning has started. If no error is received, the scan starts. It is not necessary to check the result.
Examples


Code Block
languagejs
linenumberstrue
//Request : 
[ServiceURL]/FeedHandler?op=BulkFeed&UserSession=[Token]&content=
 {
	Contents : 
	[
		{ 
			ContentURL : '~/MyApplication/Content.php?id=1811',
			DisplayName:'Document1',
			ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
			ViewURL : '~/MyApplication/ContentView.php?id=1811&wsName={wsName}',
			Permission : {   Permit : ['S-151...','Role2','Role3']  },
            MetaData:  [
					 { Name:"Description", Value:"This document is ...... ... " } 
				]

		},
		{ 
			ContentURL : '~/MyApplication/Content.php?id=1812',
			DisplayName:'Document2',
			ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
			ViewURL : '~/MyApplication/ContentView.php?id=1812&wsName={wsName}',
			Permission : {   Permit : ['S-151...','Role2','Role3']  }
		},
		{ 
			ContentURL : '~/MyApplication/Content.php?id=1813',
			DisplayName:'Document3',
			ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
			ViewURL : '~/MyApplication/ContentView.php?id=1813&wsName={wsName}',
			Permission : {   Permit : ['S-151...','Role2','Role3']  }
		},
	]
 }


Example application

...

BulkFeed
Definition

You can add sub-content to a content in GEODI. There are two methods for this.

If no authorization is defined for a child content, it inherits the rights of the parent. If authorization is defined, only the privileges defined are used. It does not inherit from the parent.


1. You can use the ParentContentIdOrURL value if you want to link the content you feed at any time to earlier content.

Code Block
  [
  		{
            ContentURL : '.../MyApplication/Content.php?id=1810',
            DisplayName:'Main Document1',
            ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
            Permission : {   Permit : ['S-151...','Role2','Role3']  },
            MetaData:  [
                     { Name:"Description", Value:"This document ...... ... " }
                ]
         },
        {
            ContentURL : '.../MyApplication/Content.php?id=1811',
            DisplayName:'Document1',
            ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
            Permission : {   Permit : ['S-151...','Role2','Role3']  },
            MetaData:  [
                     { Name:"Description", Value:"This document ...... ... " }
                ],
			ParentContentIdOrURL :'.../MyApplication/Content.php?id=1810'
         }
	]


2. Subcontents of main content can be passed in bulk with the SubContents object.

Code Block
[
  	{
        ContentURL : '.../MyApplication/Content.php?id=1810',
        DisplayName:'Main Document1',
        ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
        Permission : {   Permit : ['S-151...','Role2','Role3']  },
        MetaData:  [
            { Name:"Description", Value:"This document ...... ... " }
        ]
    },
    SubContents: [ {
        ContentURL : '.../MyApplication/Content.php?id=1811',
        DisplayName:'Doküman1',
        ContentDate:'Wed, 06 May 2015 10:15:20 GMT',
        Permission : {   Permit : ['S-151...','Role2','Role3']  },
        MetaData:  [
             { Name:"Description", Value:"This document ...... ... " }
        ]
    } ]
]




Web Crawl

BulkFeed
Definition
You can scan for a Web page and its linked pages.
Code Block
  [
  		{
            ContentURL : 'http://www.dece.com.tr',
			CrawlSettings: {
				DisableChangeHost:true,
				TotalContentCount:100
			}
			CopyMetaDataToSubContentTree:true,
			MetaData:  [
					 { Name:"Description", Value:"...." } 
				]
         }
	]



Enumerator Manipulation

BulkFeed
Definition
You can change any property of the source and feed it with the following method.
The original source you feed will not be damaged. It continues to work.
The source must be defined and running in the GEODI project.
The example below provides a different folder scan of an attached Folder Source in the project.

.

Code Block
  [
  		{
            ContentURL : "advancedmode",
			AdvSettings: {
				FolderNames:"[\"C:\\\MyTestFolder\"]",
			}
        }
]



Feed with Twitter search

BulkFeed
Definition
If you have a MediaMon license, you can make a Twitter search with the Enumerator Manipule method.
To do this, you must add a working twitter source to the GEODI project and feed it.
Code Block
  [
  		{
            ContentURL : "advancedmode",
			AdvSettings: {
				IncludeSearch:true,
				Queries:"[{Ands:'<Search Text>'}]"
			}
        }
]